ExpressionDescriptorDefineCollectionStringParameter Method

Defines a parameter placeholder that expects a string collection.

Namespace: Dundas.BI.Data.Metadata
Assembly: Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (26.2.0.1000)
Syntax
public ParameterPlaceholder DefineCollectionStringParameter(
	string placeholderCaption,
	string name,
	string? description,
	IEnumerable<string> defaultValue
)

Parameters

placeholderCaption  String
The parameter placeholder used in the expression statement.
name  String
The name.
description  String
The parameter description.
defaultValue  IEnumerableString
The default value.

Return Value

ParameterPlaceholder
The expression parameter.
Exceptions
ExceptionCondition
ArgumentExceptionplaceholderCaption is or Empty or already in use in the expression statement.
InvalidOperationExceptionParameters can be defined only for entity specific expressions.
See Also