Book Image

Entity Framework Tutorial

By : Joydip Kanjilal
Book Image

Entity Framework Tutorial

By: Joydip Kanjilal

Overview of this book

<p>The ADO.NET Entity Framework is a new way to build the data access layer of your Windows or web applications. It's an Object Relational Mapping (ORM) technology that makes it easy to tie together the data in your database with the objects in your applications, by abstracting the object model of an application from its relational or logical model.<br /><br />This clear and concise book gets you started with the Entity Framework and carefully gives you the skills to speed up your application development by constructing a better data access layer. It shows you how to get the most from the ADO.NET Entity Framework to perform CRUD operations with complex data in your applications.<br /><br />This tutorial starts out with the basics of the Entity Framework, showing plenty of examples to get you started using it in your own code. You will learn how to create an Entity Data Model, and then take this further with Entity types. You will also learn about the Entity Client data provider, learn how to create statements in Entity SQL, and get to grips with ADO.NET Data Services, also known as Project Astoria.</p>
Table of Contents (13 chapters)
Entity Framework Tutorial
Credits
About the Author
About the Reviewer
Preface

Chapter 4. Working with Stored Procedures in the Entity Data Model

In the previous chapter, we learned about the ADO.NET Entity Data Model (EDM), a conceptual model, that can be used to design the data access layer of your application. In this chapter, we will discuss how to map stored procedures in the EDM and use them in our applications. We will discuss the following points:

  • Mapping Stored Procedures to Functions in the EDM

  • Using Stored Procedures

  • Mapping Stored Procedures that return Custom Entity Types

Mapping Stored Procedures to Functions in the EDM

Stored Procedures are represented as functions in the EDM. To use these functions, they should be mapped to a corresponding Insert, Update, or Delete operation on the entity. To do this, you need to first create a Function Import and then use the designer to create its mapping. In this section, we will learn how to create these Function Imports for our EDM.

To begin, let's refer to the Entity Data Model we created in chapter 2:

To create Function...