UNPKG

typeorm-linq-repository

Version:

Wraps TypeORM repository pattern and QueryBuilder using fluent, LINQ-style queries.

10 lines (9 loc) 221 B
/** * Options for query conditions such as string case matching. */ export interface QueryConditionOptions { /** * Whether to enforce case sensitivity when comparing strings. */ matchCase?: boolean; }