EdmComplexObject Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.AspNetCore.OData.Formatter.Value.EdmComplexObject : Microsoft.OData.Edm.IEdmComplexType -> Microsoft.AspNetCore.OData.Formatter.Value.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.AspNetCore.OData.Formatter.Value.EdmComplexObject : Microsoft.OData.Edm.IEdmComplexTypeReference -> Microsoft.AspNetCore.OData.Formatter.Value.EdmComplexObject
Public Sub New (edmType As IEdmComplexTypeReference)
Parameters
- edmType
- IEdmComplexTypeReference
The IEdmComplexTypeReference of this object.
Applies to
EdmComplexObject(IEdmComplexType, Boolean)
Initializes a new instance of the EdmStructuredObject class.
public EdmComplexObject (Microsoft.OData.Edm.IEdmComplexType edmType, bool isNullable);
new Microsoft.AspNetCore.OData.Formatter.Value.EdmComplexObject : Microsoft.OData.Edm.IEdmComplexType * bool -> Microsoft.AspNetCore.OData.Formatter.Value.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.