标签: c# sharepoint
如何在客户端对象模型中将值设置为sharepoint list look up列。如何将字符串值转换为字段查找类型以在共享点列表中设置值
答案 0 :(得分:0)
您需要从查阅列中指定id。
FieldLookupValue lv = new FieldLookupValue(); lv.LookupId = 1; item["Project"] = lv; item.Update(); clientContext.ExecuteQuery();