Render the where condition for a (batch) load by identifier / collection key

Namespace:  NHibernate.Loader
Assembly:  NHibernate (in NHibernate.dll)

Syntax

Visual Basic (Declaration)
Protected Function WhereString ( _
	alias As String, _
	columnNames As String(), _
	type As IType, _
	batchSize As Integer _
) As SqlStringBuilder
C#
protected SqlStringBuilder WhereString(
	string alias,
	string[] columnNames,
	IType type,
	int batchSize
)
Visual C++
protected:
SqlStringBuilder^ WhereString(
	String^ alias, 
	array<String^>^ columnNames, 
	IType^ type, 
	int batchSize
)
JavaScript
function whereString(alias, columnNames, type, batchSize);

Parameters

alias
Type: System..::.String
columnNames
Type: array< System..::.String >[]()[]
type
Type: NHibernate.Type..::.IType
batchSize
Type: System..::.Int32

See Also