Adds the preformatted sql to the SqlString that is being built.

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

Syntax

Visual Basic (Declaration)
Public Function Add ( _
	sql As String _
) As SqlStringBuilder
C#
public SqlStringBuilder Add(
	string sql
)
Visual C++
public:
SqlStringBuilder^ Add(
	String^ sql
)
JavaScript
function add(sql);

Parameters

sql
Type: System..::.String
The string to add.

Return Value

This SqlStringBuilder

See Also