I have two tables: a WorkItem table, and a WorkItemNote table. How do I return a WorkItem and all of the WorkItemNotes that meet a certain criteria?
I think this should be simple, almost like a conditional "Include", right?
|
I have two tables: a WorkItem table, and a WorkItemNote table. How do I return a WorkItem and all of the WorkItemNotes that meet a certain criteria? I think this should be simple, almost like a conditional "Include", right? |
|||
|
|
|
I've been planning on writing a tip on this but your question beat me to the punch. Assuming a you can do this:
This produces an anonymous element for each EF identity resolution insures that the same I assume that next you want to just get back to just the
Then if you now do this:
You will see that This is because of something called Relationship Fixup. I.e. this gives you what you want conditional include. Hope this helps |
|||||||||||||
|