I'm using MVC 5 + EF 6 + MySQL Connector/NET 6.9.6 but I encountered a strange behavior: when I want to create a controller from a POCO class, I have to comment this
//[DbConfigurationType(typeof(MySqlEFConfiguration))]
public class ApplicationDbContext : IdentityDbContext<ApplicationUser>
then uncomment for the rest of my operations like migrations.
//[DbConfigurationType(typeof(MySqlEFConfiguration))]
public class ApplicationDbContext : IdentityDbContext<ApplicationUser>
then uncomment for the rest of my operations like migrations.