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