Convert EntityReference to Entity

前端 未结 3 1112
夕颜
夕颜 2021-02-04 09:47

Does anyone know how can Convert EntityReference to Entity.

protected override void Execute(CodeActivityContext execution         


        
3条回答
  •  深忆病人
    2021-02-04 10:35

    Entity and EntityReference is different. The EntityReference is a reference for a record which contains the GUID and the logical name of entity. You have to get the entity accessing through guid and logical name. Something like that:

    service.Retrieve(logicalname, guid, new ColumnSet(columns));
    

提交回复
热议问题