DSL to create 'is less than or equal to' relational condition
static Cond<ValType> ltEq<ValType>(Field<ValType> field, ValType value) => Cond<ValType>(field, Op.LtEq, value);