Initializes a new instance of the StandardSQLFunction class.

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

Syntax

C#
public ClassicAggregateFunction(
	string name,
	bool acceptAsterisk,
	IType typeValue
)
Visual Basic
Public Sub New ( _
	name As String, _
	acceptAsterisk As Boolean, _
	typeValue As IType _
)
Visual C++
public:
ClassicAggregateFunction(
	String^ name, 
	bool acceptAsterisk, 
	IType^ 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