Elisabeth
Elisabeth

Reputation: 21206

Lazy Loading of property in entity framework

Is the latest entity framework finally able to lazy load properties (e.g. byte[] ) without doing that table splitting hack?

Upvotes: 2

Views: 1254

Answers (1)

Ladislav Mrnka
Ladislav Mrnka

Reputation: 364279

No it is not able to lazy load columns without table splitting. As you can see the suggestion is even not yet switched to planned or under review state. Table splitting workaround solves this problem.

EF is now open source so you can add that feature yourselves.

Upvotes: 3

Related Questions