摘要:
今天写了一个窗体应用程序,以访问SharePoint站点中的列表内容。代码如下:using (NewsDataContext data = new NewsDataContext("http://localhost/sites/news/PressReleases")) { // Get the SharePoint list EntityList<新闻列表Item> newslist = data.GetList<新闻列表Item>("新闻列表"); if (newslist != null) { var item = from 阅读全文