連絡先 (連絡先) と車の詳細 (cir_cardetails) の間には 1:N の関係がありました。以下のように、車の詳細のルックアップとして連絡先のパラメーターを渡しています。
public static DependencyProperty ContactProperty =
DependencyProperty.Register("Contact", typeof(Lookup), typeof(CreateCardetails));
[CrmInput("Contact ID")]
[CrmReferenceTarget("contact")]
public Lookup Contact
{
get
{
return (Lookup)base.GetValue(ContactProperty);
}
set
{
base.SetValue(ContactProperty, value);
}
}
protected override ActivityExecutionStatus Execute(ActivityExecutionContext
executionContext)
{
----------------------
---------------------
---------------------
Guid contactId = ((Lookup)base.GetValue(ContactProperty)).Value;
Lookup lookup = new Lookup();
lookup.Value = contactId;
lookup.type = "contact";
//Create an car details record which will be linked to the contact record
DynamicEntity cardetails = new DynamicEntity("cir_cardetails");
cardetails["cir_carsdetailsid"] = lookup;
//Setting the picklist value of Model
Picklist modelPickList = new Picklist();
modelPickList.Value = model.Value;
cardetails.Properties.Add(new PicklistProperty("cir_model",modelPickList));
//Creating the car details record
Guid carkey = crmService.Create(cardetails);
}
しかし、ここで、この GUID 値 (ルックアップ) を車の詳細レコードに設定してから、車の詳細レコードを作成したいと考えています。私が上記のコードで行ったのは正しいですか
Lookup lookup = new Lookup();
lookup.Value = contactId;
lookup.type = "contact";
DynamicEntity cardetails = new DynamicEntity("cir_cardetails");
cardetails["cir_carsdetailsid"] = lookup;
ルックアップ値を設定する方法を教えてください。