The SQL required to create the underlying database objects

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

Syntax

Visual Basic (Declaration)
Function SqlCreateStrings ( _
	dialect As Dialect _
) As String()
C#
string[] SqlCreateStrings(
	Dialect dialect
)
Visual C++
array<String^>^ SqlCreateStrings(
	Dialect^ dialect
)
JavaScript
function sqlCreateStrings(dialect);

Parameters

dialect
Type: NHibernate.Dialect..::.Dialect
The Dialect to help with creating the sql.

Return Value

An array of String objects that contain the sql to create the necessary database objects.

See Also