I used code migrations using sql server. But on my new project, I am required to use MySQL. I followed every step into this tutorial, I think I get everything I needed but to this line:
public ApplicationDbContext()
: base("DefaultConnection", throwIfV1Schema : false)
It has an error that says IdentityDbContext does not contain a constructor that takes 2 arguments.
I know what's the error is. But I searched about this 'throwIfV1Schema' and found out that some devs uses this line for migrations using MySQL. I don't know what's wrong with my project. Please help! Thanks,