vote up 2 vote down star

Hi I have a read-only database, so I am turning off ObjectTracking (thus implicitly turning off DeferredLoading).

I wish to do lazy loading and not use LoadWith<>.

What is the simplest way to explicitly tell Linq to go and lazy fetch a relation just before I need the data itself.

For example: a simple dbml alt text

If I have the following code:

  TestDbDataContext context = new TestDbDataContext(Settings.Default.TestersConnectionString);
  context.ObjectTrackingEnabled = false;

  var result = context.Employees.ToList();
  foreach (var employee in result)
  {
    // HERE Should load gift list
    foreach (var gift in employee.Gifts)
    {
      Console.WriteLine(gift.Name);
    }
  }

I know I can write a full query again, but I hope we can find together a better way.

flag

68% accept rate

2 Answers

vote up 1 vote down check

You are fighting the system... 2 thoughts:

  • if you know you need the other data (nested foreach), why wouldn't you want to use LoadWith? That is pretty-much the text-book use case
  • since you (from post) know that object tracking is required for lazy loading, why not just enable object tracking; data-contexts should usually be considered "units of work" (i.e. short-lived), so this isn't likely to hurt much in reality.

See the official replies here for why these two options (object tracking and deferred loading) are linked.

link|flag
The code you see is a much simplified version of my real code. My code first assumed LoadWith, now I'm trying to optimize and lazy load instead of eager load (because of performance), so just before I really need the data I want want to load it. It may really leave the scope of the datacontext... – ArielBH Apr 1 at 9:15
and data will be passed through the application. – ArielBH Apr 1 at 9:15
Are you actually suer, from profiling, that ObjectTracking is causing you a problem. Given your requirements, I'd just enable it. Personally, though, I like a repository pattern with no lazy loading - my repository fetches data (or updates data) within a method and then has nothing to do with it... – Marc Gravell Apr 1 at 9:36
The problem is that if I've got plenty of relations (I've ended with 17 LoadWith<> statements) loading a single entity can take much time. what should I do? – ArielBH Apr 1 at 9:43
BTW about repository pattern. Do you consider this article as valid guide for implementing with Linq2Sql ? codeproject.com/KB/architecture/… – ArielBH Apr 1 at 9:53
show 21 more comments
vote up 0 vote down

Use a LazyList: http://blog.wekeroad.com/blog/lazy-loading-with-the-lazylist/

link|flag
Yeah, I know about that one. But this one demands major rewrites of the generated entities and queries. – ArielBH Apr 1 at 12:13
From experience, having your own data model beats counting on Linq2Sql... (too many advantages to list here) – Eran Kampf Apr 1 at 12:17
Worth thought but irrelevant. – ArielBH Apr 1 at 12:19
Thats the right way to do what you want – Eran Kampf Apr 1 at 12:35
Havent played much with the Linq2Sql autogenerated class but maybe you can get it to NOT generate the Gifts property and then add a partial class to Employee and define that property yourself (using IQueryable rather than EntitySet or whatever Linq2Sql uses) – Eran Kampf Apr 1 at 12:37

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.