EdmEntityObjectCollection 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
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.