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;
}
私が探しているのは、子オブジェクトの変更追跡も自動的に有効にする方法です。それぞれをループして、変更の追跡を開始するように明示的に指示する必要はありません。
洞察をお寄せいただきありがとうございます。