Tagged Questions
3
votes
1answer
1k views
Get items from sharepoint list by Title field with ignore care using Caml or SPQuery
I want to get data from SharePoint List using CAML and filtered by Title with ignore case like
<Query>
<Where>
<Eq>
<FieldRef Name='Title' />
...
1
vote
3answers
423 views
CAML JOINS using SharePoint
Assume that there are Emp and Dept tables.
Emp Table has
EmpID
FirstName
LastName
DeptName
Email
Dept table has
DeptID
DeptName
i have to display all the employee details based on DeptName ...