whereCondition method

SimpleSelectStatement<TTable, TModel> whereCondition(
  1. Expression<bool> filter(
    1. TTable tbl
    )
)

Add WHERE condition

Implementation

SimpleSelectStatement<TTable, TModel> whereCondition(
    Expression<bool> Function(TTable tbl) filter) {
  return this..where(filter);
}