CamlQuery camlQuery = new CamlQuery();
camlQuery.ViewXml = @"<View Scope='RecursiveAll'>
<Query>
</Query>
</View>";
camlQuery.FolderServerRelativeUrl = folder.ServerRelativeUrl;
ListItemCollection listItems = list.GetItems(camlQuery);
clientContext.Load(listItems);
clientContext.ExecuteQuery();
listItems is getting all 4 files I want to filter list using filename.if filename matches with database table file name then exclude that item from listItems
for example -
4 files - 1.txt 2.txt 3.txt 4.txt
in `database` table if `1.txt and 2.txt` is present then it will match with listItems filename and need to exclude these two items from listItems.
above is just an example I have 100's of file which I need to compare using filename and exclude from list if present into database table.
So we listItems is having only 2 items - 3.txt 4.txt
How can I achieve this without foreach loop ? is there anything I can use like LINQ or CamlQuery ?