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