endsWith method
Get sql statement to check this value if ends with text
.
Implementation
ConditionQuery endsWith(String text) {
return ConditionQuery(
before: this, after: '%$text', operatorString: 'LIKE');
}
Get sql statement to check this value if ends with text
.
ConditionQuery endsWith(String text) {
return ConditionQuery(
before: this, after: '%$text', operatorString: 'LIKE');
}