Amss.Boilerplate.Persistence.Impl.Configuration.DatabaseConfigurator.ExportSqlSchema C# (CSharp) Method

ExportSqlSchema() public method

public ExportSqlSchema ( string file ) : void
file string
return void
        public void ExportSqlSchema(string file)
        {
            var fluentConfiguration = this.CreateProductionSchema();
            var configuration = fluentConfiguration.BuildConfiguration();

            new SchemaExport(configuration).SetOutputFile(file).Create(true, false);
        }