Provides a standard implementation that supports the majority of the HQL functions that are translated to SQL.

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

Syntax

Visual Basic (Declaration)
Public Class StandardSQLFunction _
	Implements ISQLFunction
C#
public class StandardSQLFunction : ISQLFunction
Visual C++
public ref class StandardSQLFunction : ISQLFunction
JavaScript
NHibernate.Dialect.Function.StandardSQLFunction = function();

Type.createClass(
	'NHibernate.Dialect.Function.StandardSQLFunction',
	null,
	NHibernate.Dialect.Function.ISQLFunction);

Remarks

The Dialect and its sub-classes use this class to provide details required for processing of the associated function.

Inheritance Hierarchy

See Also