在使用sn-client-dotnet上传文件(并获得新的内容ID)之后,是否可以更新自定义字段?
我的目标是SN 7安装。
答案 0 :(得分:0)
我认为您应该重新加载内容,修改字段并调用并等待 saveAsync()
var uploadedDocument = await Content.LoadAsync(uploadedDocId);
uploadedDocument["CustomFieldName"] = someValue;
await uploadedDocument.SaveAsync();
您可以找到一些详细的示例here