I have the following query in linq to entities. The problem is that i doesn't seems to load the "Tags" relation even thou i have a include thingy for it. It works fine if i do not join on tags but i need to do that.

            var items = from i in db.Items.Include("Tags")
                        from t in i.Tags
                        where t.Text == text
                        orderby i.CreatedDate descending
                        select i;

Is there any other way to ask this query? Maybe split it up or something?

link|improve this question

38% accept rate
feedback

1 Answer

up vote 28 down vote accepted

Well, the Include contradicts the where. Include says, "Load all tags." The where says, "Load some tags." When there is a contradiction between the query and Include, the query will always win.

To return all tags from any item with at least one tag == text:

        var items = from i in db.Items.Include("Tags")
                    where i.Tags.Any(t => t.Text == text)
                    orderby i.CreatedDate descending
                    select i;

(Untested, as I don't have your DB/model)

Here's a really good, free book on LINQ.

link|improve this answer
Any suggestions on how to write it in some other way so i can get the tags and do a condition on them. It would be kind of simple in regular SQL. – Stuck Jan 6 '09 at 15:29
Do you want to include ALL tags from ANY item with AT LEAST one tag == text? – Craig Stuntz Jan 6 '09 at 16:21
Yes! Thats what i want :) – Stuck Jan 7 '09 at 8:47
1  
Thank you! I must buy a book or something on LINQ. That was really elegant. – Stuck Jan 9 '09 at 9:21
2  
See updated answer for book. :) – Craig Stuntz Jan 9 '09 at 13:54
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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