如何使用Dynamics CRM中的插件为查找字段设置值? 我正在使用下面的代码,但它无法正常工作。
Entity ent = (Entity)service.Retrieve("mdoc_sentence", sGUID, new ColumnSet(new string[]{ "lookupFiled"} );
ent["lookupFiled"] = "baa25488-6d99-es11-99da-225056836fb7";
service.Update(ent);
答案 0 :(得分:3)
您应该使用以下代码:
ent["lookupfield"] = new EntityReference("entityname", new Guid("baa25488-6d99-es11-99da-225056836fb7"));