Namespace:  NHibernate.Persister.Collection
Assembly:  NHibernate (in NHibernate.dll)

Syntax

Visual Basic (Declaration)
Public MustOverride Function WhereJoinFragment ( _
	alias As String, _
	innerJoin As Boolean, _
	includeSubclasses As Boolean _
) As SqlString
C#
public abstract SqlString WhereJoinFragment(
	string alias,
	bool innerJoin,
	bool includeSubclasses
)
Visual C++
public:
virtual SqlString^ WhereJoinFragment(
	String^ alias, 
	bool innerJoin, 
	bool includeSubclasses
) abstract
JavaScript
function whereJoinFragment(alias, innerJoin, includeSubclasses);

Parameters

alias
Type: System..::.String
innerJoin
Type: System..::.Boolean
includeSubclasses
Type: System..::.Boolean

Implements

IJoinable..::.WhereJoinFragment(String, Boolean, Boolean)

See Also