Entity Framework and Linq to Entities and .Include() few tables, or maybe?

I think what you are looking for is either "Lazy Loading" or "Eager Loading" as Alex James pointed out This blog post explains that "Lazy Loading" is to be implemented in version 4.0 of the Entity Framework blogs.msdn.com/adonet/archive/2009/05/12... It can be done automatically, Google "Entity Framework lazy loading" to go about setting it up.

I think what you are looking for is either "Lazy Loading" or "Eager Loading" as Alex James pointed out. This blog post explains that "Lazy Loading" is to be implemented in version 4.0 of the Entity Framework. blogs.msdn.com/adonet/archive/2009/05/12... It can be done automatically, Google "Entity Framework lazy loading" to go about setting it up.

2 Just to be clear 'Lazy' or Deferred loading, is not the same as eager loading. Which is strictly speaking what is being asked for, however I think you were right to highlight lazy-loading because it is probably what is really needed. Eager loading does just one query.

Where as lazy-loading provides the illusion that the related objects are loaded in one query, when in fact they are not. As related objects are accessed the EF silently issues additional queries. – Alex James May 28 '09 at 16:23.

I think what you are looking for is either "Lazy Loading" or "Eager Loading" as Alex James pointed out. This blog post explains that "Lazy Loading" is to be implemented in version 4.0 of the Entity Framework. It can be done automatically, Google "Entity Framework lazy loading" to go about setting it up.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions