Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an Item. Item has a Category.

Category has ID, Name, Parent and Children. Parent and Children are categories also.

When I do a linq to entities query for a specific Item, it doesn't return the related Category, unless I use the Include("Category") method. But it doesn't bring the full category, with its parent and children. I could do Include("Category.Parent"), but this object is something like a tree, I have a recursive hierarchy and I don't know where it ends.

How can I make EF fully load the Category, with parent and children, and the parent with their parent and children, and so on?

This is not something for the whole application, for performance considerations it would be needed only for this specific entity, the Category.

share|improve this question
1  
If it's recursive, then it could (easily) have a cycle. You have to choose a max depth. Having done that, you can write a query for it. – Craig Stuntz Aug 20 '09 at 20:24
No, cycles will not be allowed. The business layers see this as a tree, no chance to the parent add a child as parent. – Victor Rodrigues Aug 20 '09 at 20:41
If cycles are not allowed then the best relational model might be nested sets. Depends on your app, though. NS is good for mostly querying, FKs are good for mostly insert/update/delete. But the mapping would be entirely different. – Craig Stuntz Aug 21 '09 at 1:53
2  
I don't know that you need to change the model. But nested sets are significantly faster when doing primarily selection. RDBMSs usually either (1) have no support for heirarchies at all (e.g., SQL 2005) or (2) have it, to some degree, but don't expose it in their EF provider (e.g., SQL 2008). You're asking the EF to support something the DB cannot do in straight SQL! (Think: what SQL statement would return JOINed rows with unlimited depth?) Eager loading in the EF works by changing the SQL statement. What SQL statement would produce the result set you want? – Craig Stuntz Aug 21 '09 at 13:08
2  
Just because your implementation doesn't allow for cycles, the data constructs you are using could. Thus EF can't allow you to eagerly load the tree. Instead, you need to explicitly call Load when you need the related items. Alternatively, you could load the table as a flat collection and re-build the tree manually. While that would issue a single request to the database for reading, it becomes more tricky managing updates. – Jim Wooley Aug 22 '09 at 17:56
show 1 more comment

6 Answers

up vote 15 down vote accepted
+100

Instead of using the "Inculde" method you could use "Load".

You could then do a for each and loop through all the children loading their children. Then do a for each through their children, and so on.

The number of levels down you go will be hard coded in the number of for each loops you have.

Here is an example of using load: http://msdn.microsoft.com/en-us/library/bb896249.aspx

share|improve this answer
I've tried Load, but a SqlDataReader exception was thrown (even when enabling the MultipleActiveResultSets) – Victor Rodrigues Sep 1 '09 at 13:55
Could you post the code that you tried? – Shiraz Bhaiji Sep 1 '09 at 15:51
The problem was SQL Server 2000. It does not support MARS. – Victor Rodrigues Sep 2 '09 at 14:10

If you definitely want the whole hierarchy loaded, then if it was me I'd try writing a stored proc, who's job it is to return all the items in a hierarchy, returning the one you ask for first (and its children subsequently).

And then let the EF's relationship fixup ensure that they are all hooked up.

i.e. something like:

// the GetCategoryAndHierarchyById method is an enum
Category c = ctx.GetCategoryAndHierarchyById(1).ToList().First();

if you've written your stored proc correctly, materializing all the items in the hierarchy (i.e. ToList()) should make EF relationship fixup kicks in.

And then the item you want (First()) should have all its Children loaded and they should have their children loaded etc. All be populated from that one Store Proc call, so no MARS problems either.

Hope this helps

Alex

share|improve this answer

It could be dangerous if you did happen to load all recursive entities, especially on category, you could end up with WAY more than you bargained for:

Category > Item > OrderLine > Item
                  OrderHeader > OrderLine > Item
         > Item > ...

All of a sudden you've loaded most of your database, you could have also loaded invoices lines, then customers, then all their other invoices.

What you should do is something like the following:

var qryCategories = from q in ctx.Categories
                    where q.Status == "Open"
                    select q;

foreach (Category cat in qryCategories) {
    if (!cat.Items.IsLoaded)
        cat.Items.Load();
    // This will only load product groups "once" if need be.
    if (!cat.ProductGroupReference.IsLoaded)
        cat.ProductGroupReference.Load();
    foreach (Item item in cat.Items) {
        // product group and items are guaranteed
        // to be loaded if you use them here.
    }
}

A better solution however is to construct your query to build an anonymous class with the results so you only need to hit your datastore once.

var qryCategories = from q in ctx.Categories
                    where q.Status == "Open"
                    select new {
                        Category = q,
                        ProductGroup = q.ProductGroup,
                        Items = q.Items
                    };

This way you could return a dictionary result if required.

Remember, your contexts should be as short lived as possible.

share|improve this answer

You chould rather introduce a mapping table that maps each Category a parent and a child, instead of adding the parent and child property to the cargo itself.

Depending on how often you need that information it can be queried on demand. Via unique constraints in the db you can avoid an infinite amount of relationships beeing possible.

share|improve this answer

Wouldn't it be much simpler to create a view that is a recursive query ala http://www.webinade.com/web-development/creating-recursive-sql-calls-for-tables-with-parent-child-relationships and simply map that. Much faster too.

share|improve this answer

try this

 List<SiteActionMap> list = this.GetQuery<SiteActionMap>()
                .Where(m => m.Parent == null && m.Active == true)
                .Include(m => m.Action)
                .Include(m => m.Parent).ToList();


            if (list == null)
                return null;

            this.GetQuery<SiteActionMap>()
                .OrderBy(m=>m.SortOrder)
                .Where(m => m.Active == true)
                .Include(m => m.Action)
                .Include(m => m.Parent)
                .ToList();


            return list;
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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