EdmCollectionExpression Constructor (IEdmTypeReference, IEnumerable<IEdmExpression>)
Initializes a new instance of the EdmCollectionExpression class.
Namespace: Microsoft.Data.Edm.Library.Expressions
Assembly: Microsoft.Data.Edm (in Microsoft.Data.Edm.dll)
Syntax
'Declaration
Public Sub New ( _
declaredType As IEdmTypeReference, _
elements As IEnumerable(Of IEdmExpression) _
)
'Usage
Dim declaredType As IEdmTypeReference
Dim elements As IEnumerable(Of IEdmExpression)
Dim instance As New EdmCollectionExpression(declaredType, _
elements)
public EdmCollectionExpression(
IEdmTypeReference declaredType,
IEnumerable<IEdmExpression> elements
)
public:
EdmCollectionExpression(
IEdmTypeReference^ declaredType,
IEnumerable<IEdmExpression^>^ elements
)
new :
declaredType:IEdmTypeReference *
elements:IEnumerable<IEdmExpression> -> EdmCollectionExpression
public function EdmCollectionExpression(
declaredType : IEdmTypeReference,
elements : IEnumerable<IEdmExpression>
)
Parameters
- declaredType
Type: Microsoft.Data.Edm.IEdmTypeReference
Declared type of the collection.
- elements
Type: System.Collections.Generic.IEnumerable<IEdmExpression>
The constructed element values.