.NET Core in Action by Dustin Metzgar

.NET Core in Action by Dustin Metzgar

Author:Dustin Metzgar [Dustin Metzgar]
Language: eng
Format: epub
Publisher: Manning Publications
Published: 2018-07-19T16:00:00+00:00


Alongside ASP.NET Core, Microsoft is building Entity Framework (EF) Core. EF Core is a .NET Core version of Entity Framework, which is a full ORM built by Microsoft for the .NET Framework. Instead of porting EF from the .NET Framework, the team decided to rewrite most of EF—much like how ASP.NET Core is a rewrite of ASP.NET. You’ll explore EF briefly by using it to rewrite your supply-chain management data-access layer.

You can start by creating the projects using the following commands. You’ll create the ScmDataAccess project as before, but you won’t need a project for implementing each type of database. You’ll include an xUnit test project called ScmDalTest to make sure everything’s working:

cd .. mkdir EfTest cd EfTest dotnet new classlib -o EfScmDataAccess dotnet new xunit -o EfScmDalTest



Download



Copyright Disclaimer:
This site does not store any files on its server. We only index and link to content provided by other sites. Please contact the content providers to delete copyright contents if any and email us, we'll remove relevant links or contents immediately.