-
Notifications
You must be signed in to change notification settings - Fork 1
EntityReference Extensions
Artem Grunin edited this page Mar 10, 2019
·
1 revision
Set of extension methods for Microsoft.Xrm.Sdk.EntityReference base class. At the moment just two simple but sometimes useful type conversion methods.
Gets the entity based on the EntityReference.
public Entity ToEntity();
Gets the entity based on the EntityReference as the specified type.
public T ToEntity<T>() where T : Entity;