Appends the string 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 String _
) As SqlString
C#
public SqlString Append(
	string rhs
)
Visual C++
public:
SqlString^ Append(
	String^ rhs
)
JavaScript
function append(rhs);

Parameters

rhs
Type: System..::.String
The string 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