Calls the named ISQLFunction

Namespace: NHibernate.Criterion
Assembly: NHibernate (in NHibernate.dll) Version: 3.2.0.4000 (3.2.0.4000)

Syntax

C#
public static IProjection SqlFunction(
	string functionName,
	IType type,
	params IProjection[] projections
)
Visual Basic
Public Shared Function SqlFunction ( _
	functionName As String, _
	type As IType, _
	ParamArray projections As IProjection() _
) As IProjection
Visual C++
public:
static IProjection^ SqlFunction(
	String^ functionName, 
	IType^ type, 
	... array<IProjection^>^ projections
)

Parameters

functionName
Type: System..::..String
Name of the function.
type
Type: NHibernate.Type..::..IType
The type.
projections
Type: array<NHibernate.Criterion..::..IProjection>[]()[][]
The projections.

Return Value

[Missing <returns> documentation for "M:NHibernate.Criterion.Projections.SqlFunction(System.String,NHibernate.Type.IType,NHibernate.Criterion.IProjection[])"]

See Also