How to use ObservableCollection with Fluent nHibernate?
问题 ObservableCollection<ItemPedido> Items But now in Fluent nHibernate i don´t know how to use it. Is there an easy way to use ObservableCollection with Fluent nHibernate? I noticed there is a DLL NHibernate.Collection.Observable; But i don´t know how to replace my current code that uses IList: public virtual IList<ItemPedido> Items { get { return _Items; } set { _Items = value; OnPropertyChanged(System.Reflection.MethodBase.GetCurrentMethod().Name.Substring(4)); /*OnPropertyChanged("Items");*/