Udostępnij za pośrednictwem


EdmDeltaEntityObject Constructor

 

Namespace:   System.Web.OData
Assembly:  System.Web.OData (in System.Web.OData.dll)

Overload List

Name Description
System_CAPS_pubmethod EdmDeltaEntityObject(IEdmEntityType)

Initializes a new instance of the EdmDeltaEntityObject class.

System_CAPS_pubmethod EdmDeltaEntityObject(IEdmEntityType, Boolean)

Initializes a new instance of the EdmDeltaEntityObject class.

System_CAPS_pubmethod 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

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

  • isNullable
    Type: System.Boolean

    true 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

Return to top