Use the late bound entity class in code

 

Applies To: Dynamics CRM 2013

In Microsoft Dynamics CRM 2013 and Microsoft Dynamics CRM Online, you can use the Entity class when you work with entities. When initialized, the Entity class contains the logical name of an entity and a property-bag array of the entity’s attributes. This lets you use late binding so that you can work with types such as custom entities and custom attributes that weren’t available when your application was compiled.

The key difference between early and late binding involves type conversion. While early binding provides compile-time checking of all types so that no implicit casts occur, late binding checks types only when the object is created or an action is performed on the type. The Entity class requires types to be explicitly specified to prevent implicit casts.

See Also

Write applications and server extensions
Retrieve data with queries
Use the Entity class for create, update and delete
Use the Entity class to add or update associations between related records
Sample: Create, retrieve, update, and delete (late bound)
Sample: Serialize and deserialize an entity Instance