Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
从远程客户端查询 WSS/MOSS 列表的最简单方法是什么
使用 /_vti_bin/lists.asmx 和 XML 片段进行查询似乎是一项简单任务的大量工作?
我找到了U2U CAML Query Builder这有点帮助
如果您使用 .NET 编写,请参考 Microsoft.SharePoint.Dll,获取一个 SPWeb 实例,并通过该实例获取您的列表实例。然后您可以直接访问它,或者通过定义 SPQuery q、将 CAML 查询字符串设置为 q.Query 并获取 SPListItemCollection col = list["myList"].GetItems(q); 创建 CAML 查询。
我找到了解决方案——Linq for Sharepoint 真是太酷了!
http://www.codeplex.com/LINQtoSharePoint
它还没有完成,但它对我来说很好