Initializes a new instance of the AggregateExpression class.

Namespace: ININ.IceLib.Configuration.Dialer
Assembly: ININ.IceLib.Dialer (in ININ.IceLib.Dialer.dll) Version: 0.0.0.0 (22.3.0.208)

Syntax

C#
public AggregateExpression(
	AggregateFunctionType function,
	DBColumn column,
	string resultName,
	bool distinct
)
Visual Basic
Public Sub New ( _
	function As AggregateFunctionType, _
	column As DBColumn, _
	resultName As String, _
	distinct As Boolean _
)

Parameters

function
Type: ININ.IceLib.Configuration.Dialer..::..AggregateFunctionType
The type of aggregate function to use in this expression.
column
Type: ININ.IceLib.Configuration.Dialer.DataTypes..::..DBColumn
The parameter passed to the aggregate function.
resultName
Type: System..::..String
The column name to use if this expression is part of a result set.
distinct
Type: System..::..Boolean
A flag indicating whether this expression should be evaluated with only distinct values.

See Also