Locate a registered sql function by name.

Namespace: NHibernate.Hql.Ast.ANTLR
Assembly: NHibernate (in NHibernate.dll) Version: 3.2.0.4000 (3.2.0.4000)

Syntax

C#
public ISQLFunction FindSQLFunction(
	string functionName
)
Visual Basic
Public Function FindSQLFunction ( _
	functionName As String _
) As ISQLFunction
Visual C++
public:
ISQLFunction^ FindSQLFunction(
	String^ functionName
)

Parameters

functionName
Type: System..::..String
The name of the function to locate

Return Value

The sql function, or null if not found.

See Also