Adds the columns for the Type to the WhereFragment

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

Syntax

Visual Basic (Declaration)
Public Function AddWhereFragment ( _
	columnNames As String(), _
	type As IType, _
	op As String _
) As SqlSimpleSelectBuilder
C#
public SqlSimpleSelectBuilder AddWhereFragment(
	string[] columnNames,
	IType type,
	string op
)
Visual C++
public:
SqlSimpleSelectBuilder^ AddWhereFragment(
	array<String^>^ columnNames, 
	IType^ type, 
	String^ op
)
JavaScript
function addWhereFragment(columnNames, type, op);

Parameters

columnNames
Type: array< System..::.String >[]()[]
The names of the columns to add.
type
Type: NHibernate.Type..::.IType
The IType of the property.
op
Type: System..::.String
The operator to put between the column name and value.

Return Value

The SqlSimpleSelectBuilder

See Also