Lazy load for nonnavigation property in EF 4.1
问题 Is there a simple solution to make lazy load for nonnavigation property in the EF 4.1? For example, for byte array. 回答1: No EF doesn't provide lazy loading for scalar and complex properties. The trick is to use table splitting where data from single table are mapped into two entities related with one-to-one relation. One entity is the principal and it contains navigation property to the dependent and because of that you can use lazy loading. Here is the question with link how to do it in EDMX