backlinkMany<SourceEntityT> method

_QueryBuilder<SourceEntityT> backlinkMany<SourceEntityT>(
  1. QueryRelationToMany<SourceEntityT, T> rel, [
  2. Condition<SourceEntityT>? qc
])
inherited

Like linkMany, but where the to-many relation is defined in the other object.

Implementation

_QueryBuilder<SourceEntityT> backlinkMany<SourceEntityT>(
        QueryRelationToMany<SourceEntityT, T> rel,
        [Condition<SourceEntityT>? qc]) =>
    _QueryBuilder<SourceEntityT>._link(
        this, qc, C.qb_backlink_standalone(_cBuilder, rel._model.id.id));