Thanks Crad ! I didnt know that behavior of ObservableCollection<T> !
On Sep 4, 12:29 pm, Crad <[EMAIL PROTECTED]> wrote: > You should keep using IList<T> in your domain model and wrapping them > with BindingList<T> once on the UI layer. > > WPF works fine with BindingList<T> as well, thanks to > BindingListCollectionView class and they're preferable against > ObservableCollection because the last one can't be used as a wrapper: > both have a constructor that accepts a List<T>, but > ObservableCollection copies every item in its inner list, while > BindingList replaces its whole inner list with the one provided as > argument. > > m. > > On Sep 4, 1:45 pm, Quicoli <[EMAIL PROTECTED]> wrote: > > > > > Hi friends! > > > Someone here is using NHibernate and WPF effectively ? I will start a > > new project here, using WPF, so i would like to know, from someone, if > > there is some tricks ... > > > I know ObservableCollection<T> is not supported, so, if someone is > > using WPF + NHibernate, what have you doing to bypass this > > situation... > > > Thanks ! --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
