我正在使用 STE,我想启用对象及其子对象的更改跟踪。我现在要做的就是这样。
int id = 1;
using(CustomerEntities context = new CustomerEntities())
{
CustomerSection custSection = context.CustomerSections.Include("CustomerSections.Customers").SingleOrDefault(p => p.ID == id);
custSection.StartTracking();
foreach(Customer cust in custSection.Customers)
{
cust.StartTracking();
{
return custSection;
}
我正在寻找的是一种自动启用对子对象的更改跟踪的方法,而不必遍历每个对象并明确告诉它开始跟踪更改。
提前感谢您的任何见解。