isInner property

bool isInner

Returns true if this conditions performs an "inner join" of related tables/repositories. Returns false if an outer join is needed to not influence other conditions in the query (usually when a condition is inside an OR group).

  • Uses parent.isInner to resolve it.

Implementation

bool get isInner => parent?.isInner ?? true;