query method
Future<List<T> >
query({
- String? tableName,
- bool? distinct,
- List<
String> ? columns, - String? where,
- List<
Object?> ? whereArgs, - String? groupBy,
- String? having,
- String? orderBy,
- int? limit,
- int? offset,
override
调用sqflite 封装好的查询
Implementation
@override
Future<List<T>> query({String? tableName,
bool? distinct,
List<String>? columns,
String? where,
List<Object?>? whereArgs,
String? groupBy,
String? having,
String? orderBy,
int? limit,
int? offset}) async {
List<Map<String, Object?>> lists = await db.query(tableName ?? table,
distinct: distinct,
columns: columns,
where: where,
whereArgs: whereArgs,
groupBy: groupBy,
having: having,
orderBy: orderBy,
limit: limit,
offset: offset);
if (lists.isEmpty) return [];
List<T> datas = [];
for (Map<String, Object?> map in lists) {
datas.add(fromJson(map));
}
return datas;
}