relationCompiler property

RelationCompiler get relationCompiler

Get or create relation compiler. Uses startingCounter: 1 since t0 is reserved for the base table.

Implementation

RelationCompiler get relationCompiler =>
    _relationCompiler ??= RelationCompiler(
      schema: schema ?? schemaRegistry,
      provider: provider,
      startingCounter: 1,
    );