I trying to implement a like sql condition, using filter method but it doesnt work.
I find that filter just support operators: <, >, <= or >= , IN.
So when i run:
Model.all(this.entityClass).filter( 'xxxxx LIKE', value);
i get an exception:
SienaException occured : Filter field 'xxxxx LIKE' not found
How could i implement LIKE operator any ideas?
Thanks,