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