我需要克隆主实体和子实体。我在 CodeProject 上遇到了这个似乎可以完成工作的解决方案,请参阅: http: //www.codeproject.com/Tips/474296/Clone-an-Entity-in-Entity-Framework-4。
但是我使用的是 EF5 和 DBContext,而这段代码使用的是 EF4 和 EntityObject,所以我想知道我需要对其进行哪些更改?
代码是:
public static T CopyEntity<T>(MyContext ctx, T entity, bool copyKeys = false) where T : EntityObject
{
T clone = ctx.CreateObject<T>();
PropertyInfo[] pis = entity.GetType().GetProperties();
foreach (PropertyInfo pi in pis)
{
EdmScalarPropertyAttribute[] attrs = (EdmScalarPropertyAttribute[])
pi.GetCustomAttributes(typeof(EdmScalarPropertyAttribute), false);
foreach (EdmScalarPropertyAttribute attr in attrs)
{
if (!copyKeys && attr.EntityKeyProperty)
continue;
pi.SetValue(clone, pi.GetValue(entity, null), null);
}
}
return clone;
}
调用代码是:
Customer newCustomer = CopyEntity(myObjectContext, myCustomer, false);
foreach(Order order in myCustomer.Orders)
{
Order newOrder = CopyEntity(myObjectContext, order, true);
newCustomer.Orders.Add(newOrder);
}
我在这里发帖是因为对这篇文章的反馈看起来不活跃,我相信这是一个任何 EF 专业人士都可以回答的问题。
提前谢谢了。