Creating the data model

To use LINQ to Entities, we need to add a conceptual data model, EDM, to the project. There are two ways to create an EDM: create it from a database or create it manually. Here, we will create the EDM from the Northwind database. We will add two tables and one view from the Northwind database into our project, so that later on we can use them to demonstrate LINQ to Entities.

Installing Entity Framework

To utilize LINQ to Entities, we first need to install Entity Framework to the project. Follow these steps to do this:

  1. From the Solution Explorer, right-click on the project item and then select Manage NuGet Packages.....
  2. On the Manage NuGet Packages window, select Online | nuget.org | EntityFramework.
  3. Click on the Install button ...

Get WCF Multi-layer Services Development with Entity Framework Fourth Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.