Sharepoint 列表到 ADO.Net 数据表
是否可以转换共享点列表(通过 Web 服务或对象模型获取)并将其转换为 ADO.NET 数据表?
Is it possible to convert a share point list (getting it via the web service or object model) and transform it into a ADO.NET data table?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
或者使用 OM 中的 GetDataTable 方法:
Or using the GetDataTable method in the OM:
通过 SPQuery 获取列表项,
现在您有了一个可以使用的 ADO.NET DataTable。
Get the list items through a SPQuery,
Now you have a ADO.NET DataTable to work on.