Create a schema exporter for the given Configuration, with the given database connection properties

Namespace:  NHibernate.Tool.hbm2ddl
Assembly:  NHibernate (in NHibernate.dll)

Syntax

Visual Basic (Declaration)
Public Sub New ( _
	cfg As Configuration, _
	connectionProperties As IDictionary _
)
C#
public SchemaExport(
	Configuration cfg,
	IDictionary connectionProperties
)
Visual C++
public:
SchemaExport(
	Configuration^ cfg, 
	IDictionary^ connectionProperties
)
JavaScript
NHibernate.Tool.hbm2ddl.SchemaExport = function(cfg, connectionProperties);

Parameters

cfg
Type: NHibernate.Cfg..::.Configuration
The NHibernate Configuration to generate the schema from.
connectionProperties
Type: System.Collections..::.IDictionary
The Properties to use when connecting to the Database.

See Also