EdmCollectionExpression Constructor (IEdmTypeReference, array<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, _
ParamArray elements As IEdmExpression() _
)
'Usage
Dim declaredType As IEdmTypeReference
Dim elements As IEdmExpression()
Dim instance As New EdmCollectionExpression(declaredType, _
elements)
public EdmCollectionExpression(
IEdmTypeReference declaredType,
params IEdmExpression[] elements
)
public:
EdmCollectionExpression(
IEdmTypeReference^ declaredType,
... array<IEdmExpression^>^ elements
)
new :
declaredType:IEdmTypeReference *
elements:IEdmExpression[] -> EdmCollectionExpression
public function EdmCollectionExpression(
declaredType : IEdmTypeReference,
... elements : IEdmExpression[]
)
Parameters
- declaredType
Type: Microsoft.Data.Edm.IEdmTypeReference
Declared type of the collection.
- elements
Type: array<Microsoft.Data.Edm.Expressions.IEdmExpression[]
The constructed element values.