我有一个名为Samples的实体。在里面我有很多字段,其中一个是ProjectLocation下拉列表。
现在我使用这段代码通过 WCF 在 CRM中插入一个Sample类型的新实例。
Entity sample = new Entity("new_sample");
sample.Attributes["name"]= "Ahmed";
这可行,但是当我想进入ProjectLocation时,我不知道应该如何完成。
这行不通。
Entity projectLoc = service.Retrieve("projectlocation", (new guid here), columnset)
sample.Attributes["new_projectlocation1"] = projectLoc
可以做什么?