The SQL required to create the database objects for a TableGenerator.
Namespace:
NHibernate.Id
Assembly:
NHibernate (in NHibernate.dll)
Syntax
Visual Basic (Declaration) |
---|
Public Function SqlCreateStrings ( _
dialect As Dialect _
) As String() |
Visual C++ |
---|
public:
virtual array<String^>^ SqlCreateStrings(
Dialect^ dialect
) sealed |
JavaScript |
---|
function sqlCreateStrings(dialect); |
Return Value
An array of
String objects that contain the Dialect specific sql to
create the necessary database objects and to create the first value as
1
for the TableGenerator.
Implements
IPersistentIdentifierGenerator..::.SqlCreateStrings(Dialect)
See Also