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