Book Image

Code-First Development with Entity Framework

By : Sergey Barskiy
Book Image

Code-First Development with Entity Framework

By: Sergey Barskiy

Overview of this book

<p>Entity Framework Code-First enables developers to read and write data in a relational database system using C# or VB.NET. It is Microsoft's answer to demand for an ORM from .NET developers.</p> <p>This book will help you acquire the necessary skills to program your applications using Entity Framework. You will start with database configuration and learn how to write classes that define the database structure. You will see how LINQ can be used with Entity Framework to give you access to stored data. You will then learn how to use Entity Framework to persist information in a Relational Database Management System. You will also see how you can benefit from writing ORM-based .NET code. Finally, you will learn how Entity Framework can help you to solve database deployment problems using migrations.</p>
Table of Contents (15 chapters)
Code-First Development with Entity Framework
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Inserting data into the database


There are many ways to insert new data into your database. You can add new objects to the collection, as we did in previous chapters. You can also set the state to Added on each entity. If you are adding entities that contain child entities, the Added state is propagated to all the objects in the graph. In other words, Entity Framework assumes that you are attaching a new object graph if the root entity is new. The object graph term typically refers to a number of related entities that form a complex tree structure. For example, if we have a person object with a number of phone numbers contained in a list property on the Person class, we are dealing with an object graph, where the person entity is a root object. Phone entities are, in essence, children of that person object. Since we have seen a simple functionality, let's work through this complex addition scenario.

First, we will create a new person instance with phone numbers. Then, we will add this person...