我有一個SP2010客戶端應用程序進行REST調用。我有一個很大的列表,我希望使用名爲'displays'的none或many選項字段的值進行過濾查詢。我無法添加到此服務器端代碼。基於多選字段中的擴展列的REST查詢(Listdata.svc)
當我「擴大」查詢我可以訪問選擇的價值,像這樣
myDataVar.d.results[0].Displays.results[0].Value
因爲拖1000行到客戶端,以顯示20是殘酷和不尋常的網絡懲罰我需要篩選d.results
上.Displays.results[0].Value
。
我已經試過這樣:
[site]/_vti_bin/Listdata.svc/MasterDataList?$filter=Displays/Value eq 'Wide'
我與錯誤消息
"No property 'Value' exists in type 'System.Collections.Generic.IEnumerable`1[[Microsoft.SharePoint.Linq.DataServiceEntity, Microsoft.SharePoint.Linq, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c]]' at position 9."
每another thread我已經試過獎勵
/_vti_bin/Listdata.svc/MasterDataList?$filter=DisplaysValue eq 'Wide'&$expand=Displays
錯誤:
無財產「DisplaysValue」型「Microsoft.SharePoint.Linq.DataServiceEntity」存在於位置0
測試的「顯示」沒有「價值」後綴的錯誤是:
操作情商'與操作數類型不兼容System.Collections.Generic.IEnumerable`1 [[Microsoft.SharePoint.Linq.DataServiceEntity,Microsoft.SharePoint.Linq,Version = 14.0.0.0,Culture = neutral,PublicKeyToken = 71e9bce111e9429c]]'和'System .String'在位置9.
再次感謝我在2010年回來。
我不知道這是否在2010年是可能的。然而,我在這裏完全沒有幫助我,很確定這可以在2013年完成。 –
您在多大程度上使用REST?如果這是一個選項,您可以在SharePoint 2010的JavaScript對象模型中使用常規的'CAML查詢。 – Thriggle