【发布时间】:2021-08-02 17:57:56
【问题描述】:
我正在使用 MS Graph 获取 SharePoint(在线)列表项。
这是我的代码:
var queryOptions = new List<QueryOption>()
{
new QueryOption("expand", "fields(select=CRItemIDNintex, CRChangeTitle, CRCategory, CRTechnicalArea, CRStatus)"),
new QueryOption("filter", "startswith(fields/CRStatus, '60') or startswith(fields/CRStatus, '70')")
};
var resultListsItems = await graphServiceClient.Sites[siteId]
.Lists[listId]
.Items
.Request(queryOptions)
.GetAsync();
问题是我没有得到“CRTechnicalArea”的任何值。 这是结果的示例:
如您所见,没有“CRTechnicalArea”。
这怎么可能?
【问题讨论】:
标签: microsoft-graph-api sharepoint-online