|
|
|
|
|
by Sakes
3282 days ago
|
|
There are a number of things you can do to improve performance of queries generated by ORMs. * Make sure you are indexing properly * limit the number of items returned by introducing paging * use lazy loading where applicable I'm sure there are other techniques, but these are my gotos. |
|