I have a ASP.NET MVC 5 / .NET 4.7 project that I want to upgrade to ASP.NET Core.
The MVC frontend references a service layer project (SL) which in its that uses a datalayer (DAL) project built using Entity Framework.
Our assessment is that Entity Framework Core is still missing features that we need and that we should not upgrade the DAL project to .NET Core.
What framework should my projects target to be able to work together? Can we upgrade just one project to .NET Core and keep the rest in .NET Framework?
<PackageReference .../>s. I used<TargetFramework>net47</TargetFramework>and<RuntimeIdentifier>win-x64</RuntimeIdentifier>in the projects. I created a new aspnetcore web projetct (net47) and added what was needed. I have not converted the EntityFramework DAL project