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

Inheritance in the Entity Framework


Inheritance is a property of Object-Oriented Programming which enables you to extend new classes from existing ones and provide additional functionality to them. Entity Framework supports the following types of inheritance:

  • Table per hierarchy

  • Table per type

  • Table per concrete type

Table per Hierarchy

To implement Table per Hierarchy, or Single Table Inheritance, simply inherit a new class from your existing entity class and add the properties you need. As an example, suppose we need to create an entity called OldEmployee from the Employee entity in our Payroll EDM. To do this, create a new entity called OldEmployee in the designer and specify the base type as Employee. Here is how the two entities are represented in the EDM:

<EntityType Name="Employee">
<Key>
<PropertyRef Name="EmployeeID" />
</Key>
<Property Name="EmployeeID" Type="Int32" Nullable="false" />
<Property Name="FirstName" Type="String" Nullable="false" MaxLength...