A little supplement.
This is more generic problem and I hope you not to tell me 'it is by
design'.
When in DB you have Product P, which has two collections: Categories
{C1} and Attributes {Att1, Att2, Att3}
and you try to read it from DB:
Repository<DbProduct>.FindFirst(
DetachedCriteria.For<DbProduct>().
SetFetchMode("Categories",
FetchMode.Eager)).
SetFetchMode("Attributes",
FetchMode.Eager));
This is what you get:
P {Categories {C1,C1,C1} and Attributes {Att1, Att2, Att3}}
P {Categories {C1,C1,C1} and Attributes {Att1, Att2, Att3}}
P {Categories {C1,C1,C1} and Attributes {Att1, Att2, Att3}}
I understand P duplicates, and I know how to get rid them, but what
about duplicates of C1 ?
Bartosz Pierzchlewicz
Ps. sorry for more questions than answers
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"nhusers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/nhusers?hl=en
-~----------~----~----~----~------~----~------~--~---