FieldOps<TEntity, TValue> extension

Extension methods for easier filter creation

on

Methods

eq(TValue value) Eq<TEntity, TValue>

Available on Field<TEntity, TValue>, provided by the FieldOps extension

Builds an equality filter for this field.
filter(Filter filter) Nested<TEntity, TValue>

Available on Field<TEntity, TValue>, provided by the FieldOps extension

Builds a nested filter for this field.
gt(TValue value) Gt<TEntity, TValue>

Available on Field<TEntity, TValue>, provided by the FieldOps extension

Builds a greater-than filter for this field.
gte(TValue value) Gte<TEntity, TValue>

Available on Field<TEntity, TValue>, provided by the FieldOps extension

Builds a greater-than-or-equal filter for this field.
isIn(List<TValue> values) InList<TEntity, TValue>

Available on Field<TEntity, TValue>, provided by the FieldOps extension

Builds an inclusion filter for this field.
lt(TValue value) Lt<TEntity, TValue>

Available on Field<TEntity, TValue>, provided by the FieldOps extension

Builds a less-than filter for this field.
lte(TValue value) Lte<TEntity, TValue>

Available on Field<TEntity, TValue>, provided by the FieldOps extension

Builds a less-than-or-equal filter for this field.
neq(TValue value) Neq<TEntity, TValue>

Available on Field<TEntity, TValue>, provided by the FieldOps extension

Builds an inequality filter for this field.