PacktPublishing / Entity-Framework-Core-Cookbook

Code bundle for Entity Framework Core Cookbook

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Entity Framework Core Cookbook

This is the code repository for Entity Framework Core Cookbook, published by Packt. It contains all the supporting project files necessary to work through the book from start to finish.

##Instructions and Navigation All of the code is organized into folders. Each folder starts with number followed by the application name. For example, Chapter02.

You will see code something similar to the following:

protected void OnModelCreating(ModelBuilder modelBuilder)
{
  modelBuilder
   .HasSequence(name: "SeqName", schema: "shared")
   .StartsAt(1)
   .IncrementsBy(1);
  base.OnModelCreating (modelBuilder);
}


Software and Hardware List

Chapter Software required OS required Free/Proprietary Download links to the software
1 Visual Studio 2015 Windows Proprietary https://www.visualstudio.com
2 SQL Server 2012/2016 Windows/ Proprietary https://www.microsoft.com/en-us/cloud-platform/sql-server-editions-express
3 .NET Core Windows/Mac OSX/ Linux Proprietary https://www.microsoft.com/net/core

##Related IBM topics:

Suggestions and Feedback

[Click here] (https://docs.google.com/forms/d/e/1FAIpQLSe5qwunkGf6PUvzPirPDtuy1Du5Rlzew23UBp2S-P3wB-GcwQ/viewform) if you have any feedback or suggestions.

Download a free PDF

If you have already purchased a print or Kindle version of this book, you can get a DRM-free PDF version at no cost.
Simply click on the link to claim your free PDF.

https://packt.link/free-ebook/9781785883309

About

Code bundle for Entity Framework Core Cookbook

License:MIT License


Languages

Language:C# 73.0%Language:HTML 22.2%Language:TSQL 2.3%Language:CSS 1.7%Language:JavaScript 0.9%