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

Syntax

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

Parameters

name
Type: System..::.String
returnType
Type: NHibernate.Type..::.IType
hasParenthesesIfNoArguments
Type: System..::.Boolean

See Also