where method
Find records matching conditions
Implementation
Future<List<TModel>> where(
Expression<bool> Function(TTable tbl) filter) {
return (database.select(table)..where(filter)).get();
}
Find records matching conditions
Future<List<TModel>> where(
Expression<bool> Function(TTable tbl) filter) {
return (database.select(table)..where(filter)).get();
}