what's the alternative to readonlycollection when using lazy="extra"?
- by Kunjan
I am trying to use lazy="extra" for the child collection of Trades I have on my Client object. The trades is an Iset<Trade Trades, exposed as ReadOnlyCollection<Trade because I do not want anyone to modify the collection directly. As a result, I have added AddTrade and RemoveTrade methods.
Now I have a Client Search page where I need to show…