Hello stackoverflowers,
我第一次尝试使用LINQ to Sharepoint,但我的where关键字未被识别:"无法找到源类型的查询模式的实现' Microsoft.SharePoint.SPList&#39 ;. '凡'找不到"。
以下是请求:
using System.Linq;
[...]
var query = from item in listToQuery
where item.Site == _siteToQuery
&& item.ReportType == _recordTypeToQuery
&& item.Date == stringDate
select item;
Result = listToQuery.GetItems(query);
listToQuery和Result是两个SPListItemCollection。
为什么不被认可?