Share via


EdmEntityObjectCollection Constructors

Definition

Overloads

EdmEntityObjectCollection(IEdmCollectionTypeReference)

Initializes a new instance of the EdmEntityObjectCollection class.

EdmEntityObjectCollection(IEdmCollectionTypeReference, IList<IEdmEntityObject>)

Initializes a new instance of the EdmEntityObjectCollection class.

EdmEntityObjectCollection(IEdmCollectionTypeReference)

Initializes a new instance of the EdmEntityObjectCollection class.

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

Parameters

edmType
IEdmCollectionTypeReference

The edm type of the collection.

Applies to

EdmEntityObjectCollection(IEdmCollectionTypeReference, IList<IEdmEntityObject>)

Initializes a new instance of the EdmEntityObjectCollection class.

public EdmEntityObjectCollection (Microsoft.OData.Edm.IEdmCollectionTypeReference edmType, System.Collections.Generic.IList<Microsoft.AspNetCore.OData.Formatter.Value.IEdmEntityObject> list);
new Microsoft.AspNetCore.OData.Formatter.Value.EdmEntityObjectCollection : Microsoft.OData.Edm.IEdmCollectionTypeReference * System.Collections.Generic.IList<Microsoft.AspNetCore.OData.Formatter.Value.IEdmEntityObject> -> Microsoft.AspNetCore.OData.Formatter.Value.EdmEntityObjectCollection
Public Sub New (edmType As IEdmCollectionTypeReference, list As IList(Of IEdmEntityObject))

Parameters

edmType
IEdmCollectionTypeReference

The edm type of the collection.

list
IList<IEdmEntityObject>

The list that is wrapped by the new collection.

Applies to