Share via


EdmEntityObject Constructors

Definition

Overloads

EdmEntityObject(IEdmEntityType)

Initializes a new instance of the EdmEntityObject class.

EdmEntityObject(IEdmEntityTypeReference)

Initializes a new instance of the EdmEntityObject class.

EdmEntityObject(IEdmEntityType, Boolean)

Initializes a new instance of the EdmEntityObject class.

EdmEntityObject(IEdmEntityType)

Initializes a new instance of the EdmEntityObject class.

public EdmEntityObject (Microsoft.OData.Edm.IEdmEntityType edmType);
new Microsoft.AspNetCore.OData.Formatter.Value.EdmEntityObject : Microsoft.OData.Edm.IEdmEntityType -> Microsoft.AspNetCore.OData.Formatter.Value.EdmEntityObject
Public Sub New (edmType As IEdmEntityType)

Parameters

edmType
IEdmEntityType

The IEdmEntityType of this object.

Applies to

EdmEntityObject(IEdmEntityTypeReference)

Initializes a new instance of the EdmEntityObject class.

public EdmEntityObject (Microsoft.OData.Edm.IEdmEntityTypeReference edmType);
new Microsoft.AspNetCore.OData.Formatter.Value.EdmEntityObject : Microsoft.OData.Edm.IEdmEntityTypeReference -> Microsoft.AspNetCore.OData.Formatter.Value.EdmEntityObject
Public Sub New (edmType As IEdmEntityTypeReference)

Parameters

edmType
IEdmEntityTypeReference

The IEdmEntityTypeReference of this object.

Applies to

EdmEntityObject(IEdmEntityType, Boolean)

Initializes a new instance of the EdmEntityObject class.

public EdmEntityObject (Microsoft.OData.Edm.IEdmEntityType edmType, bool isNullable);
new Microsoft.AspNetCore.OData.Formatter.Value.EdmEntityObject : Microsoft.OData.Edm.IEdmEntityType * bool -> Microsoft.AspNetCore.OData.Formatter.Value.EdmEntityObject
Public Sub New (edmType As IEdmEntityType, isNullable As Boolean)

Parameters

edmType
IEdmEntityType

The IEdmEntityType of this object.

isNullable
Boolean

true if this object can be nullable; otherwise, false.

Applies to