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)

Syntax

Visual Basic (Declaration)
Public Function Add ( _
	sqlString As SqlString _
) As SqlStringBuilder
C#
public SqlStringBuilder Add(
	SqlString sqlString
)
Visual C++
public:
SqlStringBuilder^ Add(
	SqlString^ sqlString
)
JavaScript
function add(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