使用MS Graph SDK for .NET CORE,可以很好地创建文档库。 新的库具有“允许管理内容类型?”是的 但是我无法更改内容类型和显示名称。
在下面的代码上,库已创建,但我可以进行任何更新。 最后一行错误: 代码:-1,Microsoft.SharePoint.Client.InvalidClientQueryException 消息:无效的请求。 内部错误: 附加数据: 要求编号:8e38aeac-39fb-4e59-b3eb-2280a353753a 日期:10/21/2019 9:21:09 PM ClientRequestId:8e38aeac-39fb-4e59-b3eb-2280a353753a
List list = new List
{
ListInfo = rootList.ListInfo,
DisplayName = rootList.Name,
Description = rootList.Description,
};
List newList = await graphClient.Groups[project.GroupID].Sites["root"].Lists.Request().AddAsync(list); // This line works
_log.LogInformation("newList.Id = " + newList.Id); //Gets a new Guid
List uplist = new List
{
Description = "Bla bla" //Or anything
};
List updList = await graphClient.Groups[project.GroupID].Sites["root"].Lists[newList.Id].Request().UpdateAsync(uplist); // This line Fails
我找不到任何将内容类型应用于列表或库的好的文档。 “ UpdateAsync(uplist)”提示它做了一个“补丁”,所以我用了它。
是否有更好的方法来应用内容类型。 我尝试使用Drive,但它没有ContentTypes属性。 感谢您的提示。
答案 0 :(得分:1)
如果仔细查看MS Graph文档,您会注意到不支持更新列表-仅更新列表项。
您可能需要使用旧版SharePoint API(https://docs.microsoft.com/en-us/sharepoint/dev/sp-add-ins/working-with-lists-and-list-items-with-rest?redirectedfrom=MSDN#working-with-lists-by-using-rest)或网站脚本(https://docs.microsoft.com/en-us/sharepoint/dev/declarative-customization/site-design-json-schema#addcontenttype)