如何将值设置为客户端对象模型中的sharepoint列表查找列

时间:2015-10-27 14:40:57

标签: c# sharepoint

如何在客户端对象模型中将值设置为sharepoint list look up列。如何将字符串值转换为字段查找类型以在共享点列表中设置值

1 个答案:

答案 0 :(得分:0)

您需要从查阅列中指定id。

 FieldLookupValue lv = new FieldLookupValue();
 lv.LookupId = 1;
 item["Project"] = lv;
 item.Update();
 clientContext.ExecuteQuery();