EdmComplexObject Constructors

Definition

Overloads

EdmComplexObject(IEdmComplexType)

Initializes a new instance of the EdmStructuredObject class.

EdmComplexObject(IEdmComplexTypeReference)

Initializes a new instance of the EdmStructuredObject class.

EdmComplexObject(IEdmComplexType, Boolean)

Initializes a new instance of the EdmStructuredObject class.

EdmComplexObject(IEdmComplexType)

Initializes a new instance of the EdmStructuredObject class.

public EdmComplexObject (Microsoft.OData.Edm.IEdmComplexType edmType);
new Microsoft.AspNet.OData.EdmComplexObject : Microsoft.OData.Edm.IEdmComplexType -> Microsoft.AspNet.OData.EdmComplexObject
Public Sub New (edmType As IEdmComplexType)

Parameters

edmType
IEdmComplexType

The IEdmStructuredType of this object.

Applies to

EdmComplexObject(IEdmComplexTypeReference)

Initializes a new instance of the EdmStructuredObject class.

public EdmComplexObject (Microsoft.OData.Edm.IEdmComplexTypeReference edmType);
new Microsoft.AspNet.OData.EdmComplexObject : Microsoft.OData.Edm.IEdmComplexTypeReference -> Microsoft.AspNet.OData.EdmComplexObject
Public Sub New (edmType As IEdmComplexTypeReference)

Parameters

Applies to

EdmComplexObject(IEdmComplexType, Boolean)

Initializes a new instance of the EdmStructuredObject class.

public EdmComplexObject (Microsoft.OData.Edm.IEdmComplexType edmType, bool isNullable);
new Microsoft.AspNet.OData.EdmComplexObject : Microsoft.OData.Edm.IEdmComplexType * bool -> Microsoft.AspNet.OData.EdmComplexObject
Public Sub New (edmType As IEdmComplexType, isNullable As Boolean)

Parameters

edmType
IEdmComplexType

The IEdmComplexType of this object.

isNullable
Boolean

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

Applies to