The containspredicate tag has no wiki summary.
1
vote
2answers
184 views
When using Sharepoint Client Model I get error : The 'Contains' member cannot be used in the expression
When using 'Contains' in Linq query:
var camlQuery = new CamlQuery();
var listItems = list.GetItems(camlQuery);
var itemQuery = listItems.Where(i => ...
1
vote
1answer
438 views
How do you escape special characters in the CONTAINS predicate of a FullTextSqlQuery in SharePoint 2010?
I am using the CONTAINS predicate in a full text SQL query in SP2010 Standard. Yes, I'd rather do a Keyword Query, but it doesn't appear to be able to handle what I need.
I have learned things like ...