ODataModelBuilder.AddEntity Method (Type)
Registers an entity type as part of the model and returns an object that can be used to configure the entity. This method can be called multiple times for the same entity to perform multiple lines of configuration.
Namespace: System.Web.Http.OData.Builder
Assembly: System.Web.Http.OData (in System.Web.Http.OData.dll)
Syntax
public virtual EntityTypeConfiguration AddEntity(
Type type
)
public:
virtual EntityTypeConfiguration^ AddEntity(
Type^ type
)
abstract AddEntity :
type:Type -> EntityTypeConfiguration
override AddEntity :
type:Type -> EntityTypeConfiguration
Public Overridable Function AddEntity (
type As Type
) As EntityTypeConfiguration
Parameters
type
Type: System.TypeThe type to be registered or configured.
Return Value
Type: System.Web.Http.OData.Builder.EntityTypeConfiguration
The configuration object for the specified entity type.
See Also
ODataModelBuilder Class
System.Web.Http.OData.Builder Namespace
Return to top