Book Image

WCF Multi-layer Services Development with Entity Framework - Fourth Edition

By : Mike Liu
Book Image

WCF Multi-layer Services Development with Entity Framework - Fourth Edition

By: Mike Liu

Overview of this book

Table of Contents (20 chapters)
WCF Multi-layer Services Development with Entity Framework Fourth Edition
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
2
Hosting the HelloWorld WCF Service
Index

Creating the LINQNorthwind solution


The first thing we need to do is create a test solution. In this chapter, we will start from the data access layer. Perform the following steps:

  1. Start Visual Studio.

  2. Create a new class library project, NorthwindDAL, with solution name LINQNorthwind (make sure that the Create directory for solution option is checked to specify the solution name).

  3. Change the Class1.cs file to ProductDAO.cs. This will also change the class name and all related places in the project.

Now, you should have a new solution with the empty data access layer class. Next, we will add a model to this layer and create the business logic layer and the service interface layer.