标签: entity-framework-4 dbcontext
我有两个相同类型的对象,我想将A替换为B.而不是使用它:
var tmp = A.prop1; A.prop1 = B.prop1; B.prop1 = tmp; .... ctx.SaveChanges();
有没有更快的方法?