Adds an existing SqlString to this SqlStringBuilder. It does NOT add any prefix, postfix, operator, or wrap around this. It is equivalent to just adding a string.

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

Syntax

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

Parameters

sqlString
Type: NHibernate.SqlCommand..::..SqlString
The SqlString to add to this SqlStringBuilder

Return Value

This SqlStringBuilder

Remarks

This calls the overloaded Add(sqlString, null, null, null, false)

See Also