5

エンティティ X の Pre Create 操作でプラグインが起動します。次のコードを使用してエンティティ X のフィールドを更新しようとすると、エラーが発生します。

trEntity = (Entity)context.InputParameters["Target"];
trGuid = (Guid)trEntity.Id;

tr = (Entity)service.Retrieve("EntityX", trGuid,
                    new ColumnSet(new string[] { "field_a", "field_b" }));


tr["field_a"] = null;
service.Update(tr);

私が得ているエラーは次のとおりです: ID = 11505683-2292-b537-e311-143710e56fb7のエンティティXは存在しません

4

2 に答える 2