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