lessThanOrEquals method
Get db statement to check if this value less than or equal another date,
other
may be DateTime object or DateTimeStringField
Implementation
ConditionQuery lessThanOrEquals(dynamic other) {
return ConditionQuery(operatorString: '<=', before: this, after: other);
}