Adds the Parameter to the SqlString that is being built. The correct operator should be added before the Add(Parameter) is called because there will be no operator ( such as "=" ) placed between the last Add call and this Add call.

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

Syntax

C#
public SqlStringBuilder Add(
	Parameter parameter
)
Visual Basic
Public Function Add ( _
	parameter As Parameter _
) As SqlStringBuilder
Visual C++
public:
SqlStringBuilder^ Add(
	Parameter^ parameter
)

Parameters

parameter
Type: NHibernate.SqlCommand..::..Parameter
The Parameter to add.

Return Value

This SqlStringBuilder

See Also