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, _
	typeValue As IType _
)
C#
public StandardSQLFunction(
	string name,
	IType typeValue
)
Visual C++
public:
StandardSQLFunction(
	String^ name, 
	IType^ typeValue
)
JavaScript
NHibernate.Dialect.Function.StandardSQLFunction = function(name, typeValue);

Parameters

name
Type: System..::.String
SQL function name.
typeValue
Type: NHibernate.Type..::.IType
Return type for the fuction.

See Also