PreCollection.whereParentheses

Specifies the filter criteria for the requested data

Adds a WHERE clause to the query.

auto children = em.find!Person()
    .where("age", ComparisonOperator.lessThan, 18)
    .selectVia(db);

Meta