The SQL required to create the database objects for a SequenceGenerator.

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

Syntax

C#
public string[] SqlCreateStrings(
	Dialect dialect
)
Visual Basic
Public Function SqlCreateStrings ( _
	dialect As Dialect _
) As String()
Visual C++
public:
virtual array<String^>^ SqlCreateStrings(
	Dialect^ dialect
) sealed

Parameters

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

Return Value

An array of String objects that contain the Dialect specific sql to create the necessary database objects for the SequenceGenerator.

Implements

IPersistentIdentifierGenerator..::..SqlCreateStrings(Dialect)

See Also