Lazy loading - what's the best approach?

前端 未结 7 934
慢半拍i
慢半拍i 2020-12-31 07:22

I have seen numerous examples of lazy loading - what\'s your choice?

Given a model class for example:

public class Person
{
    private IList

        
7条回答
  •  一个人的身影
    2020-12-31 07:38

    You can use the Lazy class I talked about here : What is the proper way to inject a data access dependency for lazy loading?

    There is also link to a more detailed blog post there...

提交回复
热议问题