在实体框架4.0中插入,更新,删除派生实体

时间:2010-03-15 03:12:15

标签: entity-framework entity

如何插入从其他实体派生的实体。这是我的代码,但它不起作用:( applicationreplacement派生自应用程序

public void AddReplacementApp(Application entity,ApplicationReplacement rentity)
{            
     _ctx.CreateObjectSet<Application>().AddObject(rentity);
     _ctx.SaveChanges();    
}

0 个答案:

没有答案