Sets the SqlString for the OUTER JOINs.

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

Syntax

C#
public SqlSelectBuilder SetOuterJoins(
	SqlString outerJoinsAfterFrom,
	SqlString outerJoinsAfterWhere
)
Visual Basic
Public Function SetOuterJoins ( _
	outerJoinsAfterFrom As SqlString, _
	outerJoinsAfterWhere As SqlString _
) As SqlSelectBuilder
Visual C++
public:
SqlSelectBuilder^ SetOuterJoins(
	SqlString^ outerJoinsAfterFrom, 
	SqlString^ outerJoinsAfterWhere
)

Parameters

outerJoinsAfterFrom
Type: NHibernate.SqlCommand..::..SqlString
The outerJoinsAfterFrom to set
outerJoinsAfterWhere
Type: NHibernate.SqlCommand..::..SqlString
The outerJoinsAfterWhere to set

Return Value

The SqlSelectBuilder

Remarks

All of the Sql needs to be included in the SELECT. No OUTER JOINS will automatically be added.

See Also