Here I am explaining example of Customer and Accounts relationship by Lazy loading:
First we create entity classes of Customer and Account:
public class Account
{
public int Id { get; set; }
}
public class Customer
{
public string Name { get; set; }
public int CustomerId { get; set; }
public List GetAccounts()
{
return lazylist.Value;
}
Lazy<List<Account>> lazylist;
public Customer(string name, int id)
{
Console.WriteLine("Initializing Customer Object");
Name = name;
CustomerId = id;
lazylist = new Lazy<List<Account>>(() => { return GetAccountList(id); });
Console.WriteLine("Initialization done");
}
private List GetAccountList(int id)
{
Console.WriteLine("Loading Accounts:");
List list = new List();
Parallel.For(100, 110, (int i) =>
{
Account a = new Account();
a.Id = i;
list.Add(a);
});
return list;
}
}
Read more: Beyond relational
QR: