
hi every one ,
I have a list which i want to filter between two specific dates. below is my code , which return 2000 record now i want to filter this list between two dates .
any help will be appreciated thank in advance
using (ClientContext context = new ClientContext("URL))
{
context.AuthenticationMode = ClientAuthenticationMode.Default;
context.Credentials = new NetworkCredential("USerName", "**********");
Web webObj = context.Web;
List listObj = webObj.Lists.GetByTitle("Leave Requests");
CamlQuery camlquery = CamlQuery.CreateAllItemsQuery(2000);
ListItemCollection listitemcoll = listObj.GetItems(camlquery);
context.Load(listitemcoll);
context.ExecuteQuery();
}
*This post is locked for comments
I have the same question (0)