ef 多表添加(关联)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ef 多表添加(关联)相关的知识,希望对你有一定的参考价值。
static void Main(string[] args)
{
//创建上下文对象 PpDbEntities dbEntities = new PpDbEntities(); #region Add() //多表增加 // Customer customer = new Customer(); customer.Name = "mmm"; dbEntities.Customer.Add(customer); //customer.ID = 5; //dbEntities.Entry(customer).State=EntityState.Deleted; //dbEntities.Entry<ProductInfo>(productInfo).State = EntityState.Deleted; // OrderInfo orderInfo = new OrderInfo(); orderInfo.Name = "mmm订单2"; dbEntities.OrderInfo.Add(orderInfo);
//第二张增加 用客户指向订单 customer.OrderInfo.Add(orderInfo); dbEntities.SaveChanges();
}
以上是关于ef 多表添加(关联)的主要内容,如果未能解决你的问题,请参考以下文章