Appends the SqlString parameter to the end of the current SqlString to create a new SqlString object.

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

Syntax

Visual Basic (Declaration)
Public Function Append ( _
	rhs As SqlString _
) As SqlString
C#
public SqlString Append(
	SqlString rhs
)
Visual C++
public:
SqlString^ Append(
	SqlString^ rhs
)
JavaScript
function append(rhs);

Parameters

rhs
Type: NHibernate.SqlCommand..::.SqlString
The SqlString to append.

Return Value

A new SqlString object.

Remarks

A SqlString object is immutable so this returns a new SqlString. If multiple Appends are called it is better to use the SqlStringBuilder.

See Also