-
Notifications
You must be signed in to change notification settings - Fork 2
Entity Data Model
The Entity Data Model describes the objects used in the API. The classes are in the namespace Net.Http.WebApi.OData.Model.
The class used to build the Entity Data Model, to be used in the application startup (see configuration)
The static EntityDataModel.Current property provides access to the model which was built by the EntityDataModelBuilder.
The dictionary of types represented in the API, the key is the name of the entity set and the value is the EdmComplexType.
Represents a type in the Entity Data Model.
The CLR type represented by the EdmType.
The name of the type in the Entity Data Model.
Extends EdmType to represent a complex type in the Entity Data Model.
A collection of EdmProperty items which represent the properties of the type in the Entity Data Model.
Extends EdmType to represent a primitive type (e.g. Int32, Boolean) in the Entity Data Model.
Represents an entity property in the Entity Data Model.
The EdmComplexType in the Entity Data Model which declares the property.
The name of the property in the Entity Data Model.
The EdmType of the property in the Entity Data Model (this could be either an EdmComplexType or EdmPrimitiveType).