In my solution I am using
- ef6 for persistence library targeting the full .NET framework
- For web API => ASPNetCore targeting the full .NET framework
Now when it comes to use aspnetcore identity, it's dependent on EFCore 2.0 and VS is not able to make migration when it comes to have EF6 and EFCore together in the same VS solution - it causes a command line error.
I have the following options :
- use both remove the EF core tools after finish model, in this case no conflict
- use https://www.nuget.org/packages/MR.AspNet.Identity.EntityFramework6
- use identity server but in this case i am introduce new variable to solution
- Upgrade all to EF 2.1 Preview which has more features but not mature
thanks Jamal