toSqlConditions method

Iterable<SqlCondition> toSqlConditions(
  1. String tableAlias,
  2. String? softDeleteColumnName
)

Implementation

Iterable<SqlCondition> toSqlConditions(
    String tableAlias, String? softDeleteColumnName) {
  return conditions
      .map((e) => _toSqlCondition(tableAlias, softDeleteColumnName, e));
}