Folks, it's been quiet in here, even on VB-sucks Fridays. I've been enjoying using the EF DbContext recently as it wraps the most frequently used functionality is a nice way. Quite often I perform bulk reads of tables and at first I'd do this:
context.Foo.AsNoTracking().ToArray(); context.Bar.AsNoTracking().ToArray(); -etc- I was wondering if this has exactly the same effect as this: context.Configuration.ProxyCreationEnabled = false; context.Foo.ToArray(); context.Bar.ToArray(); Cheers, Greg
