SharePoint ListItemCollection.GetById返回空ListItem?

问题描述 投票:0回答:1

所以我试图从共享点服务器ListItem中检索数据

唯一的问题是这部分在这里:

collection.GetById(的itemId)

返回一个完全空的ListItem,而不是它们对应于id的ListItem

当我检查调试器时,项目确实在集合中,所有数据都在那里。

我如何纠正这一点,或者我错过了一些必要的东西?

        public Dictionary<string, object> GetPendingEmployeeItem(int itemId)
        {
            var list = _app.Sharepoint.Web.Lists.GetByTitle("New Employee");
            var query = new CamlQuery();
            query.ViewXml = "<View></View>";

            var collection = list.GetItems(query);
            _app.Sharepoint.Load(collection, items => items.Include(
                item => item.Id,
                item => item.DisplayName,
                item => item.FieldValuesAsText));
            _app.Sharepoint.ExecuteQuery();

            return ConvertToDictionary(collection.GetById(itemId));
        }

        private Dictionary<string, object> ConvertToDictionary(ListItem item)
        {
            var dic = new Dictionary<string, object>();
            foreach (var pair in item.FieldValuesAsText.FieldValues)
            {
                dic.Add(pair.Key, pair.Value);
            }

            return dic;
        }
c# sharepoint listitem
1个回答
0
投票

所以我找到了解决方案。我不知道为什么它以前不会工作,但我想只要它现在有效就可以了。

我没有使用给定的方法GetById / GetItemById,而是使用First来解决它们。我错过了什么或这些方法都被打破了。

public Dictionary<string, object> GetPendingEmployeeItem(int itemId)
    {
        var list = _app.Sharepoint.Web.Lists.GetByTitle("New Employee");
        var query = new CamlQuery();
        query.ViewXml = "<View></View>";

        var collection = list.GetItems(query);

        _app.Sharepoint.Load(collection);
        _app.Sharepoint.ExecuteQuery();

        return collection.First(item => item.Id.Equals(itemId)).FieldValues;
    }
© www.soinside.com 2019 - 2024. All rights reserved.