Initializes a new instance of the StandardSQLFunction class.

Namespace:  NHibernate.Dialect.Function
Assembly:  NHibernate (in NHibernate.dll)

Syntax

Visual Basic (Declaration)
Public Sub New ( _
	name As String, _
	acceptAsterisk As Boolean, _
	typeValue As IType _
)
C#
public ClassicAggregateFunction(
	string name,
	bool acceptAsterisk,
	IType typeValue
)
Visual C++
public:
ClassicAggregateFunction(
	String^ name, 
	bool acceptAsterisk, 
	IType^ typeValue
)
JavaScript
NHibernate.Dialect.Function.ClassicAggregateFunction = function(name, acceptAsterisk, typeValue);

Parameters

name
Type: System..::.String
SQL function name.
acceptAsterisk
Type: System..::.Boolean
True if accept asterisk like argument
typeValue
Type: NHibernate.Type..::.IType
Return type for the fuction.

See Also