Showing posts with label CAML Query. Show all posts
Showing posts with label CAML Query. Show all posts

Tuesday, November 29, 2016

29 Nov

CAML, get all list items where text field contains a value?

Server Object Model: query.Query = "<Where><Contains><FieldRef Name="Name"/><Value Type="Text">" + "YourValue" + "/Value></Contains></Where>"; Client Object Model: "<Query><Where><Contains><FieldRef Name="Name"/><Value Type="Text">" + "YourValue"...
29 Nov

CAML query filter for HTML BR tag

<Value Type="Note"><!CDATA[<BR>]]></Value> <Query>    <Where>       <Contains>          <FieldRef Name='title_id ' />          <Value Type='Computed'>o</Value>       </Contains>  ...
29 Nov

CAML: Filter URL field on description

In CAML query, 'complex' fields which store multiple values, only the 'default' value is available to query - by this I mean what would be available when SPField.GetFieldValueAsText()&nbs...
29 Nov

How to build a CAML query with where clause?

We can SPUserField as SPLookupField <Query>       <Where>           <And>                <Eq>                    <FieldRef Name='UserField'/>   ...
29 Nov

How to download the U2U CAML query Builder for SharePoint 2013?

CAML Designer The one that works is this URL: http://camldesigner.blob.core.windows.net/offlinepackage/CamlDesigner2013.zip The link comes from Karine Bosch's Blog. CAML Designer is the successor of CAML Builder, and from experience I can tell you this tool is much better and accurate. I've tried the both. Edit: Looks...