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