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)

Syntax

Visual Basic (Declaration)
Public Function Add ( _
	parameter As Parameter _
) As SqlStringBuilder
C#
public SqlStringBuilder Add(
	Parameter parameter
)
Visual C++
public:
SqlStringBuilder^ Add(
	Parameter^ parameter
)
JavaScript
function add(parameter);

Parameters

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

Return Value

This SqlStringBuilder

See Also