We are currently migrating our ASP.NET MVC Web Application to ASP.NET Core Web Application. We have several base projects referred in our MVC Application. So in order to use the same MVC base projects in our new Core application, we planned to choose Core 2.0.
We can able to refer all the Base project built in entity framework in our Core application except our Database base project. Our database base project was built using Database first approach and contains the entity. So while referring that project, we are facing issues in using DB Context.
Is it possible to refer a Project which contains entity classes in .NET Core Web Application?