firstOrNew method
firstOrCreate without the insert: the row, or build's unsaved one.
Implementation
Future<TRow> firstOrNew(MssqlCondition where, TRow Function() build) async =>
await firstWhere(where) ?? build();
firstOrCreate without the insert: the row, or build's unsaved one.
Future<TRow> firstOrNew(MssqlCondition where, TRow Function() build) async =>
await firstWhere(where) ?? build();