I need to use not like where clause like this:
Select * from Customer where not like 'abc%'
Do u know how can i do this?
Thanks a lot
either filter.Add(CustomerFields.CompanyName !% "Solution%"); or filter.Add(new FieldLikePredicate(CustomerFields.CompanyName, null, "Solution%", true));
Or
filter.Add(!(CustomerFields.CompanyName % "Solution%"));
A lot of options
ref: LLBLGen Pro manual's section Negative predicates Path: Using the generated code -> Adapter/SlefServicing -> Filtering and sorting -> Advanced filter usage