add an entity to associated entities
This article demonstrates how to add an order to an existing customer. Inserting a new object to a single entity is explained in the article - Inserting new objects in EntityFramework.
To demonstrate this example, I have considered two entities - Customer and Order.
Steps to add entity to associated entities
Query the customer to whom we want to add orders.
Create a new order and set the properties.
The newly created order is joined with the customer.
How does this happen?
The ObjectContext creates a new ObjectStateEntry for the Order and its state is set as Added. When we call SaveChanges()method, the object context sends an Insert command and database is updated with new changes.
To demonstrate this example, I have considered two entities - Customer and Order.
Steps to add entity to associated entities
Query the customer to whom we want to add orders.
Create a new order and set the properties.
The newly created order is joined with the customer.
How does this happen?
The ObjectContext creates a new ObjectStateEntry for the Order and its state is set as Added. When we call SaveChanges()method, the object context sends an Insert command and database is updated with new changes.
var context = new SalesOrderManagementEntities(); var customer = context.Customer.Where(c => c.Name == "kris").First(); var order = new Order(); order.Total = 900; order.Customer = customer; context.SaveChanges();
Entity Framework Articles
- entity framework entity data model
- entity framework orm object relational mapper
- querying entity data model using objectcontext
- using ado net entity data model in windows applications.html
- create entity data model using ado.net entity framework designer in visual studio
- create-sales-order-management-data-model-using-edmgen-tool.html
- display data in a gridview using ado.net entity data source control
- ways of querying entity data model
- query entity data model using linq to entities
- query entity data model with object services and entity sql
- query entity data model using linq methods
- parameterized objectquery against a entity data model
- query entity data model entity client
- linq to entities query with projections in c#
- entity framework - save changes to entities
- insert new objects in entity framework
- deleting entities using deleteobject() method of objectcontext
- binding ado.net entity framework to a listbox in c#
- entity framework load method
- eager loading using include method in entity framework
- entity framework - retrieving a single entity
Most Viewed
Azure Q & A
Azure Platform
Grid-View
GridView CommandField example
Details-View
GridView and DetailsView Master/Detail page using SqlDataSource control
POCO
POCO overview and advantages - POCO class, Entity Framework in Enterprise Applications
Entity Framework
Query entity data model using linq to entities
Array List
Difference between arraylist and list collection
Web Services
How to create a Web service using Visual Studio.net
Form-View
FormView DataBound Event
Object Oriented Programming
Calling base class constructor in C#
Linq
Convert a sequence to a generic list using ToList()method
Project Ideas
Project ideas for students
AccountingSoftware
Accounting Software
MVC
Creating an ASP.Net MVC 3 application
.Net
Using assemblies in .net applications
ASP .Net
How to implement form validation using ASP.Net 2.0 Validation Controls
VB .Net
Constructors in Visual Basic.Net