Jeg havde MySQL EF6 og Migrations i gang, da alt var i ét MVC-projekt. Jeg delte det op i lag (Core[Interfaces/Entitites], Data, Services og Web) og begyndte at få den samme fejl, som Loren nævnte.
Fandt ud af, at den ikke opfangede forbindelsesstrengen fra MVC-appen. Det viste sig, at alt, hvad jeg skulle gøre, var at genskabe forbindelsesstrengen i App.config i mit dataprojekt (hvor DbContext og tilknytninger findes).
Dette er de trin, jeg tog for at få alt til at fungere:
Trin 1) Brug NuGet til at importere MySql.Data.Entities (den nuværende version fra dette indlæg er 6.8.3.0)
Trin 2) Tilføj følgende til App.config og/eller Web.config :
<connectionStrings>
<add name="MyDB" providerName="MySql.Data.MySqlClient" connectionString="Data Source=localhost; port=3306; Initial Catalog=mydb; uid=myuser; pwd=mypass;" />
</connectionStrings>
<entityFramework>
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework" />
<providers>
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
<provider invariantName="MySql.Data.MySqlClient" type="MySql.Data.MySqlClient.MySqlProviderServices, MySql.Data.Entity.EF6, Version=6.8.3.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d"></provider>
</providers>
</entityFramework>
Trin 3) Indstil din DbContext til at bruge MySql:
using MyApp.Core.Entities.Directory;
using MyApp.Data.Mapping;
using System.Data.Entity;
namespace MyApp.Data
{
[DbConfigurationType(typeof(MySql.Data.Entity.MySqlEFConfiguration))]
public class MyContext : DbContext
{
public MyContext() : this("MyDB") { }
public MyContext(string connStringName) : base(connStringName) {}
static MyContext ()
{
// static constructors are guaranteed to only fire once per application.
// I do this here instead of App_Start so I can avoid including EF
// in my MVC project (I use UnitOfWork/Repository pattern instead)
DbConfiguration.SetConfiguration(new MySql.Data.Entity.MySqlEFConfiguration());
}
public DbSet<Country> Countries { get; set; }
protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
// I have an abstract base EntityMap class that maps Ids for my entities.
// It is used as the base for all my class mappings
modelBuilder.Configurations.AddFromAssembly(typeof(EntityMap<>).Assembly);
base.OnModelCreating(modelBuilder);
}
}
}
Trin 4) Indstil standardprojektet til dit dataprojekt i Package Manager Console
Trin 5) Brug enable-migrations
, add-migration
, update-database
som du plejer