動態CRM插件中的Retrieve和Update之間是否存在關係? 例如,如果我檢索只有一個字段:動態CRM插件中的Retieve和更新之間的關係
Entity e = (Entity)service.Retrieve("EntityLogicalName", EntityGuid,
new ColumnSet(new string[] {"entityid"}));
我可以更新實體ë另一場尚未檢索到的? 例如:
e.Attributes["AnotherEntityField1] = "test1";
e.Attributes["AnotherEntityField2] = "test2";
service.update(e);
通過不包括在檢索要更新的各個領域,這可能導致一些隱藏的問題是什麼?