Quantcast
Channel: ADO.NET, Entity Framework, LINQ to SQL, NHibernate
Viewing all articles
Browse latest Browse all 1698

ProxyCreationEnabled in Entity framework

$
0
0

Hi

I read about ProxyCreationEnabled in the link.. https://stackoverflow.com/questions/4596371/what-are-the-downsides-to-turning-off-proxycreationenabled-for-ctp5-of-ef-code-f

I Know that it create proxys of entities but I don't know if ProxyCreationEnabled = true is slow.

I have the configuration:

Configuration.AutoDetectChangesEnabled = true;
Configuration.ProxyCreationEnabled = false;
Configuration.LazyLoadingEnabled = false;

I would like to know if ProxyCreationEnabled = true doesn't create problems with performance and the effect in my configuration.


Viewing all articles
Browse latest Browse all 1698

Trending Articles