Adds the columns for the Type to the WhereFragment

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

Syntax

C#
public SqlUpdateBuilder AddWhereFragment(
	string[] columnNames,
	IType type,
	string op
)
Visual Basic
Public Function AddWhereFragment ( _
	columnNames As String(), _
	type As IType, _
	op As String _
) As SqlUpdateBuilder
Visual C++
public:
SqlUpdateBuilder^ AddWhereFragment(
	array<String^>^ columnNames, 
	IType^ type, 
	String^ 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 SqlUpdateBuilder

See Also