what is the relation between lazyloadingenabled and proxycreationenabled in context configuration
public CorrespondenceContext()
: base("DefaultConnection")
{
this.Configuration.LazyLoadingEnabled = true;
this.Configuration.ProxyCreationEnabled = true;
}
what i noticed is when ProxyCreationEnabled=false lazyloading missed its function
that meaning that when this.Configuration.LazyLoadingEnabled = true; this.Configuration.ProxyCreationEnabled = false;
I have to use Include when using related objects
is ProxyCreationEnabled override LazyLoadingEnabled ??