/DatabaseForge

Database Forge is a library for working with database schemas. SQL Server and PostgreSQL are supported.

Primary LanguageHTMLMIT LicenseMIT

Database Forge

DatabaseForge is windows app and libraries to load and manipulate SQL Server databases. Database Contracts is a library that can be used as the foundation for code generation tools that are built on SQL Server.

To use the DatabaseForge run the DatabaseForgeApp project in the solution.

To use the database contracts nuget package in your project.

Install-Package Codenesium.DatabaseContracts

IDatabaseInterface sqlInterface = DatabaseInterfaceFactory.Factory("MSSQL");
sqlInterface.SetConnectionString(connectToDatabase.ConnectionString);
DatabaseContainer databaseContainer = sqlInterface.GetDatabaseStructure();

NuGet Badge