Initializes a new instance of the SQLFieldAggregateExpression class

Namespace: DatabaseObjects.SQL
Assembly: DatabaseObjects (in DatabaseObjects.dll) Version: 3.8.1.0

Syntax

C#
public SQLFieldAggregateExpression(
	SQLSelectTable objTable,
	string strFieldName,
	AggregateFunction eAggregate
)
Visual Basic
Public Sub New ( _
	objTable As SQLSelectTable, _
	strFieldName As String, _
	eAggregate As AggregateFunction _
)
Visual C++
public:
SQLFieldAggregateExpression(
	SQLSelectTable^ objTable, 
	String^ strFieldName, 
	AggregateFunction eAggregate
)

Parameters

objTable
Type: DatabaseObjects.SQL..::..SQLSelectTable

[Missing <param name="objTable"/> documentation for "M:DatabaseObjects.SQL.SQLFieldAggregateExpression.#ctor(DatabaseObjects.SQL.SQLSelectTable,System.String,DatabaseObjects.SQL.AggregateFunction)"]

strFieldName
Type: System..::..String

[Missing <param name="strFieldName"/> documentation for "M:DatabaseObjects.SQL.SQLFieldAggregateExpression.#ctor(DatabaseObjects.SQL.SQLSelectTable,System.String,DatabaseObjects.SQL.AggregateFunction)"]

eAggregate
Type: DatabaseObjects.SQL..::..AggregateFunction

[Missing <param name="eAggregate"/> documentation for "M:DatabaseObjects.SQL.SQLFieldAggregateExpression.#ctor(DatabaseObjects.SQL.SQLSelectTable,System.String,DatabaseObjects.SQL.AggregateFunction)"]

See Also