views:

13

answers:

1

Is there a way built into the entity framework or commonly used pattern for ordering lazy loaded navigation properties to ensure no matter how they are accessed they are always in the correct order.

I would like to avoid having to write properties or methods on partial classes if possible.

Thanks for any help.

A: 

In a word, no. Relational data has no implicit "correct" order, and the EF doesn't impose one.

Craig Stuntz
Unfortunately thats what I thought might be the case.
grrrrrrrrrrrrr