Hi,
I am performing a FieldLikePredicate call to do a LIKE search on a string field. Works fine if the field does not contain spaces, but fails if it does.
I'm using llblgen 2.6.
The code in use is :
var searchString = "%" + portName + "%"
filter.AddWithAdd(new FieldLikePredicate(PortFields.PortName, null, searchString));
Any ideas??