update method
Future<QueryResult>
update({
- required List<
ColumnValue< values,Object> > - required Where where,
- Returning? returning,
- SQLExecutor? executor,
Implementation
Future<QueryResult> update({required List<ColumnValue> values, required Where where, Returning? returning, SQLExecutor? executor}) async {
return await (executor ?? defaultExecutor).update(tableName, values: values, where: where, returning: returning);
}