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) Version: 3.2.0.4000 (3.2.0.4000)

Syntax

C#
public SqlString Append(
	SqlString rhs
)
Visual Basic
Public Function Append ( _
	rhs As SqlString _
) As SqlString
Visual C++
public:
SqlString^ Append(
	SqlString^ 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