Ik had MySQL EF6 en Migrations in gebruik toen alles in één MVC-project zat. Ik splitste het op in lagen (Core [Interfaces/Entitites], Data, Services en Web) en kreeg dezelfde fout die Loren noemde.
Ik kwam erachter dat het de verbindingsreeks niet oppikte van de MVC-app. Het bleek dat ik alleen de verbindingsreeks opnieuw hoefde te maken in de App.config in mijn Data-project (waar de DbContext en toewijzingen zich bevinden).
Dit zijn de stappen die ik heb genomen om alles werkend te krijgen:
Stap 1) Gebruik NuGet om MySql.Data.Entities te importeren (huidige versie vanaf dit bericht is 6.8.3.0)
Stap 2) Voeg het volgende toe aan App.config en/of 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>
Stap 3) Stel uw DbContext in om MySql te gebruiken:
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);
}
}
}
Stap 4) Stel het standaardproject in op uw gegevensproject in de pakketbeheerconsole
Stap 5) Gebruik enable-migrations
, add-migration
, update-database
zoals je normaal zou doen