Jaa


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.AspNet.OData.EdmEntityObjectCollection : Microsoft.OData.Edm.IEdmCollectionTypeReference -> Microsoft.AspNet.OData.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.AspNet.OData.IEdmEntityObject> list);
new Microsoft.AspNet.OData.EdmEntityObjectCollection : Microsoft.OData.Edm.IEdmCollectionTypeReference * System.Collections.Generic.IList<Microsoft.AspNet.OData.IEdmEntityObject> -> Microsoft.AspNet.OData.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