none method
Returns all models where none of the related models match filtering criteria.
Implementation
NoneExpression none([Expression Function(T)? where]) {
return NoneExpression(
ColumnCount(where?.call(_table), _tableWithRelations.id),
);
}