Sreejith.Vijayan
Sreejith.Vijayan

Reputation: 57

EntityFramework support for Asp.Net Core

I am able to add EntityFramework to ASP.NET Core application that runs on top of .NET Framework (not on .Net Core). The CR operations are working fine, but not able to enable migration since I am using Code First approach. But as per the link Limited support for EF6 in ASP Net Core

there are some limitations. Is there any work around for this to make happen?

Any help would be deeply appreciated. Thank you

Upvotes: 0

Views: 280

Answers (1)

ErikEJ
ErikEJ

Reputation: 41819

There is a third party tool that enables EF 6 Migrations with .NET Core https://github.com/mrahhal/Migrator.EF6

More information about EF6 with ASP.NET Core here: https://learn.microsoft.com/en-us/aspnet/core/data/entity-framework-6

Upvotes: 2

Related Questions