conditionFor method

MssqlCondition? conditionFor(
  1. MssqlTrashed trashed
)

Implementation

MssqlCondition? conditionFor(MssqlTrashed trashed) => switch (trashed) {
  MssqlTrashed.without => alive,
  MssqlTrashed.only => deleted,
  MssqlTrashed.with_ => null,
};