I have three tables: Scenarios, Components and Blocks. Blocks has a foreign key to ComponentId and Components has a foreign key to Scenarios.

Blocks also has a foreign key (TreeStructureId) to another table TreeStructures.

Now, why does this work:

ObjectQuery<Blocks> blocks = edumatic3Entities.Blocks.Include("TreeStructures").Include("Components.Scenarios");

It loads the TreeStructures, Components and Scenarios.

This however doesn't work:

ObjectQuery<Blocks> blocks = edumatic3Entities.Blocks.Include("Components.Scenarios").Include("TreeStructures");

This loads the Components and Scenarios but doesn't load the TreeStructures...

Seems very strange to me... Why is this?

thx, Lieven Cardoen

link|improve this question

have you tried to reproduce the problem by loading a clean edmx with a northwind db? – Davy Landman Jan 26 '09 at 8:03
Seems like I fixed the problem not knowing why. Probably did something stupid. thx. – Lieven Cardoen Feb 2 '09 at 8:13
feedback

closed as too localized by Tim Post Sep 15 '11 at 10:29

This question is unlikely to ever help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. See the FAQ for guidance on how to improve it.

1 Answer

Did you properly set the relations between the entities in your logical model? Is it set up in a way that allows navigation from Scenarios s to TreeStructures? Having a foreign key is not enough afaik.

link|improve this answer
Yes, it is set, otherwise I guess the first example of code wouldn't work either. That's the strange thing you see. It's like the order of the Include matters... – Lieven Cardoen Jan 25 '09 at 18:40
feedback

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