EdmCollectionExpression 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
EdmCollectionExpression(IEdmExpression[]) |
Initializes a new instance of the EdmCollectionExpression class. |
EdmCollectionExpression(IEnumerable<IEdmExpression>) |
Initializes a new instance of the EdmCollectionExpression class. |
EdmCollectionExpression(IEdmTypeReference, IEdmExpression[]) |
Initializes a new instance of the EdmCollectionExpression class. |
EdmCollectionExpression(IEdmTypeReference, IEnumerable<IEdmExpression>) |
Initializes a new instance of the EdmCollectionExpression class. |
EdmCollectionExpression(IEdmExpression[])
Initializes a new instance of the EdmCollectionExpression class.
public EdmCollectionExpression (params Microsoft.OData.Edm.IEdmExpression[] elements);
new Microsoft.OData.Edm.Vocabularies.EdmCollectionExpression : Microsoft.OData.Edm.IEdmExpression[] -> Microsoft.OData.Edm.Vocabularies.EdmCollectionExpression
Public Sub New (ParamArray elements As IEdmExpression())
Parameters
- elements
- IEdmExpression[]
The constructed element values.
Applies to
EdmCollectionExpression(IEnumerable<IEdmExpression>)
Initializes a new instance of the EdmCollectionExpression class.
public EdmCollectionExpression (System.Collections.Generic.IEnumerable<Microsoft.OData.Edm.IEdmExpression> elements);
new Microsoft.OData.Edm.Vocabularies.EdmCollectionExpression : seq<Microsoft.OData.Edm.IEdmExpression> -> Microsoft.OData.Edm.Vocabularies.EdmCollectionExpression
Public Sub New (elements As IEnumerable(Of IEdmExpression))
Parameters
- elements
- IEnumerable<IEdmExpression>
The constructed element values.
Applies to
EdmCollectionExpression(IEdmTypeReference, IEdmExpression[])
Initializes a new instance of the EdmCollectionExpression class.
public EdmCollectionExpression (Microsoft.OData.Edm.IEdmTypeReference declaredType, params Microsoft.OData.Edm.IEdmExpression[] elements);
new Microsoft.OData.Edm.Vocabularies.EdmCollectionExpression : Microsoft.OData.Edm.IEdmTypeReference * Microsoft.OData.Edm.IEdmExpression[] -> Microsoft.OData.Edm.Vocabularies.EdmCollectionExpression
Public Sub New (declaredType As IEdmTypeReference, ParamArray elements As IEdmExpression())
Parameters
- declaredType
- IEdmTypeReference
Declared type of the collection.
- elements
- IEdmExpression[]
The constructed element values.
Applies to
EdmCollectionExpression(IEdmTypeReference, IEnumerable<IEdmExpression>)
Initializes a new instance of the EdmCollectionExpression class.
public EdmCollectionExpression (Microsoft.OData.Edm.IEdmTypeReference declaredType, System.Collections.Generic.IEnumerable<Microsoft.OData.Edm.IEdmExpression> elements);
new Microsoft.OData.Edm.Vocabularies.EdmCollectionExpression : Microsoft.OData.Edm.IEdmTypeReference * seq<Microsoft.OData.Edm.IEdmExpression> -> Microsoft.OData.Edm.Vocabularies.EdmCollectionExpression
Public Sub New (declaredType As IEdmTypeReference, elements As IEnumerable(Of IEdmExpression))
Parameters
- declaredType
- IEdmTypeReference
Declared type of the collection.
- elements
- IEnumerable<IEdmExpression>
The constructed element values.