Код: Выделить всё
string[] scopes = new[] { "https://graph.microsoft.com/.default" };
GraphServiceClient graphClient = new GraphServiceClient(credential, scopes);
var items = GraphClient.Sites[siteId].Lists[listId].Items.GetAsync((requestConfiguration) =>
{
requestConfiguration.QueryParameters.Expand = new string[] { "fields" };
}).Result.Value;
int count = items[0].Fields.AdditionalData.Count; //37
Код: Выделить всё
ListItemCollection items = thislist.GetItems(query);
SharePoint.Load(items);
SharePoint.ExecuteQuery();
int count = items[0].FieldValues.Count; //139
Подробнее здесь: https://stackoverflow.com/questions/792 ... arepoint-d
Мобильная версия