EntityFramework.DatabaseMigrator alternatives and similar packages
Based on the "ORM" category.
Alternatively, view EntityFramework.DatabaseMigrator alternatives based on common mentions on social networks and blogs.
-
TypeORM
Data-Mapper ORM for TypeScript and JavaScript (ES7, ES6, ES5). Supports MySQL, PostgreSQL, MariaDB, SQLite, MS SQL Server, Oracle, WebSQL databases. Works in Node.js and Browser. -
Entity Framework
Object-relational mapper that enables .NET developers to work with relational data using domain-specific objects -
FreeSql
FreeSql is the ORM in .NetCore, .NetFramework, And Xamarin. It supports Mysql, Postgresql, SqlServer, Oracle, Sqlite, Odbc, 达梦, And MsAccess. -
NHibernate
NHibernate Object Relational Mapper -
FluentMigrator
Fluent Migrations framework for .net -
ServiceStack.OrmLite
Light, simple and fast convention-based POCO ORM [Free for OSS] [$] -
Fluent NHibernate
Fluent, XML-less, compile safe, automated, convention-based mappings for NHibernate. -
LINQ to DB
The fastest LINQ database access library offering a simple, light, fast, and type-safe layer between your POCO objects and your database. -
Dapper Extensions
Small library that complements Dapper by adding basic CRUD operations (Get, Insert, Update, Delete) for your POCOs -
Entity Framework 6
Object-relational mapper that enables .NET developers to work with relational data using domain-specific objects -
NPoco
Simple microORM that maps the results of a query onto a POCO object. Based on Schotime's branch of PetaPoco -
SmartSql
SmartSql = MyBatis + Cache(Memory | Redis)+ ZooKeeper + R / W Splitting + Dynamic Repository .... -
MicroOrm.Dapper.Repositories
Repository for CRUD operations -
SQLProvider
A general F# SQL database erasing type provider, supporting LINQ queries, schema exploration, individuals, CRUD operations and much more besides. -
LINQ to Twitter
LINQ Provider for the Twitter API (Twitter Library) -
Dapper.FastCRUD
The fastest micro-orm extension for Dapper -
MongoDB Repository pattern implementation
Repository abstraction layer on top of Official MongoDB C# driver -
BL Toolkit
Business Logic Toolkit for .NET -
LINQtoCSV
Popular, easy to use library to read and write CSV files. -
DbExtensions
Data-access framework with a strong focus on query composition, granularity and code aesthetics. -
JsonFlatFileDataStore
Simple JSON flat file data store with support for typed and dynamic data. -
NReco.Data
Lightweight provider-independent DAL for .NET Core: abstract query, SQL command builder, CRUD operations, object mapping.. -
AsyncPoco
A long-"awaited" fully asynchronous PetaPoco fork -
MongoFramework
An "Entity Framework"-like interface for MongoDB -
MicroLite ORM
MicroLite ORM is a micro Object Relational Mapper for the .NET framework. It is designed to be easy to use, extensible and testable. -
Linq.Expression.Optimizer
System.Linq.Expression expressions optimizer. -
Venflow
A super fast and lightweight ORM for PostgreSQL. -
Dashing
Dashing is a simple to use mini ORM built on top of Dapper. -
Jerrycurl
Razor-powered ORM for .NET and SQL lovers -
Dapper.MicroCRUD
CRUD Extensions for Dapper.Net -
MongoRiver.NET
A library for writing .NET MongoDB oplog tailers. -
AutoClutch
Generic repository and generic service. -
DatabaseObjects
.NET Object Relational Mapping Tool -
Exodus
Simple C# database migrator for .NET Core. -
Excel2SqlServer
Library for importing Excel spreadsheets into SQL Server tables -
Entity Framework Core
Object-relational mapper that enables .NET developers to work with relational data using domain-specific objects -
LLBLGen Pro
Entity Modeling solution for Entity Framework, NHibernate, Linq to SQL and its own ORM framework: LLBLGen Pro Runtime Framework. [$][Free Lite version]
Pixel-Perfect Multi-Platform Applications with C# and XAML
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest. Visit our partner's website for more details.
Do you think we are missing an alternative of EntityFramework.DatabaseMigrator or a related project?
README
EntityFramework.DatabaseMigrator
NuGet Packages
Install-Package EntityFramework.DatabaseMigrator
Back story and additional details available here.
Instructions
Assuming you already have migrations enabled,
Add a new WinForms project to your solution.
Delete the form automatically added to the new project.
Open
program.cs
in the root of your project and change Form1 to EntityFramework.DatabaseMigrator.DatabaseMigratorstatic class Program { /// <summary> /// The main entry point for the application. /// </summary> static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new EntityFramework.DatabaseMigrator.DatabaseMigrator()); } }
Change your migration configuration to inherit from BaseMigrationConfiguration or add and implement the IMigrationConfiguration interface.
internal sealed class Configuration : BaseMigrationConfiguration<EntityFramework.DatabaseMigrator.Example.Data.BlogContext> { public Configuration() { AutomaticMigrationsEnabled = false; ContextKey = "EntityFramework.DatabaseMigrator.Example.Data.BlogContext"; } }