Fluent-Nibernate with wpf: Convention to use uNhAddIns…ObservableListType<T> as default?
问题 I am trying to use Fluent-Nibernate with wpf that require Observable collections (implement the INotifyCollectionChanged interface). At uNHAddins: Unofficial addins for NHibernate i found the uNhAddIns.WPF.Collections.Types.ObservableListType<T> that implements INotifyCollectionChanged . It can be configured in Fluent-Nibernate like this namespace FluentNHibernateTutorial.Mappings { public class StoreMap : ClassMap<Store> { public StoreMap() { Id(x => x.Id); Map(x => x.Name); HasManyToMany(x