EdmEntityObject Constructor
Namespace: System.Web.Http.OData
Assembly: System.Web.Http.OData (in System.Web.Http.OData.dll)
Overload List
Name | Description | |
---|---|---|
EdmEntityObject(IEdmEntityType) | Initializes a new instance of the EdmStructuredObject class. |
|
EdmEntityObject(IEdmEntityType, Boolean) | Initializes a new instance of the EdmStructuredObject class. |
|
EdmEntityObject(IEdmEntityTypeReference) | Initializes a new instance of the EdmStructuredObject class. |
See Also
EdmEntityObject Class
System.Web.Http.OData Namespace
Return to top
EdmEntityObject Constructor (IEdmEntityType)
Initializes a new instance of the EdmStructuredObject class.
Syntax
public EdmEntityObject(
IEdmEntityType edmType
)
public:
EdmEntityObject(
IEdmEntityType^ edmType
)
new :
edmType:IEdmEntityType -> EdmEntityObject
Public Sub New (
edmType As IEdmEntityType
)
Parameters
edmType
Type: Microsoft.Data.Edm.IEdmEntityTypeThe IEdmEntityType of this object.
Return to top
EdmEntityObject Constructor (IEdmEntityType, Boolean)
Initializes a new instance of the EdmStructuredObject class.
Syntax
public EdmEntityObject(
IEdmEntityType edmType,
bool isNullable
)
public:
EdmEntityObject(
IEdmEntityType^ edmType,
bool isNullable
)
new :
edmType:IEdmEntityType *
isNullable:bool -> EdmEntityObject
Public Sub New (
edmType As IEdmEntityType,
isNullable As Boolean
)
Parameters
edmType
Type: Microsoft.Data.Edm.IEdmEntityTypeThe IEdmEntityType of this object.
isNullable
Type: System.Booleantrue if this object can be nullable; otherwise, false.
Return to top
EdmEntityObject Constructor (IEdmEntityTypeReference)
Initializes a new instance of the EdmStructuredObject class.
Syntax
public EdmEntityObject(
IEdmEntityTypeReference edmType
)
public:
EdmEntityObject(
IEdmEntityTypeReference^ edmType
)
new :
edmType:IEdmEntityTypeReference -> EdmEntityObject
Public Sub New (
edmType As IEdmEntityTypeReference
)
Parameters
edmType
Type: Microsoft.Data.Edm.IEdmEntityTypeReferenceThe IEdmEntityTypeReference of this object.
Return to top