ODataUtils.LoadODataAnnotations Method (IEdmModel, IEdmEntityType, Int32)
Loads the supported, OData-specific serializable annotations into their in-memory representations.
Namespace: Microsoft.Data.OData
Assembly: Microsoft.Data.OData (in Microsoft.Data.OData.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Sub LoadODataAnnotations ( _
model As IEdmModel, _
entityType As IEdmEntityType, _
maxEntityPropertyMappingsPerType As Integer _
)
'Usage
Dim model As IEdmModel
Dim entityType As IEdmEntityType
Dim maxEntityPropertyMappingsPerType As Integer
model.LoadODataAnnotations(entityType, _
maxEntityPropertyMappingsPerType)
public static void LoadODataAnnotations(
this IEdmModel model,
IEdmEntityType entityType,
int maxEntityPropertyMappingsPerType
)
[ExtensionAttribute]
public:
static void LoadODataAnnotations(
IEdmModel^ model,
IEdmEntityType^ entityType,
int maxEntityPropertyMappingsPerType
)
static member LoadODataAnnotations :
model:IEdmModel *
entityType:IEdmEntityType *
maxEntityPropertyMappingsPerType:int -> unit
public static function LoadODataAnnotations(
model : IEdmModel,
entityType : IEdmEntityType,
maxEntityPropertyMappingsPerType : int
)
Parameters
- model
Type: Microsoft.Data.Edm.IEdmModel
The IEdmModel containing the annotations.
- entityType
Type: Microsoft.Data.Edm.IEdmEntityType
The IEdmEntityType to process.
- maxEntityPropertyMappingsPerType
Type: System.Int32
The maximum number of entity mapping attributes to be found for an entity type (on the type itself and all its base types).
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IEdmModel. When you use instance method syntax to call this method, omit the first parameter. For more information, see https://msdn.microsoft.com/en-us/library/bb384936(v=vs.103) or https://msdn.microsoft.com/en-us/library/bb383977(v=vs.103).