我正在使用STE,並且希望爲對象及其子項啓用更改跟蹤。我現在需要做的就是這樣的事情。 int id = 1;
using(CustomerEntities context = new CustomerEntities())
{
CustomerSection custSection = context.CustomerSections.Include("CustomerSectio
我有一個基類,我從繼承有兩個零到與其他實體一對多的關係: public abstract class WebObject
{
public WebObject()
{
RelatedTags = new List<Tag>();
RelatedWebObjects = new List<WebObject>();
}
[Key,