Samplesというエンティティがあります。その中には多くのフィールドがあり、そのうちの 1 つは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
何ができるでしょうか?