如何在客户端对象模型中设置sharepoint列表查找列的值
本文关键字:查找 列表 sharepoint 设置 客户端 对象模型 | 更新日期: 2023-09-27 18:19:23
如何在客户端对象模型中设置sharepoint列表查找列的值。如何将字符串值转换为用于在sharepoint列表中设置值的字段查找类型
您需要从查找列中指定id。
FieldLookupValue lv = new FieldLookupValue();
lv.LookupId = 1;
item["Project"] = lv;
item.Update();
clientContext.ExecuteQuery();