A
Andrus
I tried query like
var list=Db.Customers.ToList();
and noticed that all properties are retrieved immediately.
Only few properties are actually used in each unit of work.
Also properties contain large amout of data (images, attachments, text
documentes).
Retireving all properties over internet is slow.
Also big properties take a lot of memory in users computer.
How to force DLinq to retrieve those properties only which are are actually
used?
Andrus.
var list=Db.Customers.ToList();
and noticed that all properties are retrieved immediately.
Only few properties are actually used in each unit of work.
Also properties contain large amout of data (images, attachments, text
documentes).
Retireving all properties over internet is slow.
Also big properties take a lot of memory in users computer.
How to force DLinq to retrieve those properties only which are are actually
used?
Andrus.