3

我正在尝试将 Fluent-Nibernate 与需要 Observable 集合(实现INotifyCollectionChanged接口)的 wpf 一起使用。

uNHAddins:NHibernate的非官方插件我发现

    uNhAddIns.WPF.Collections.Types.ObservableListType<T>

实现INotifyCollectionChanged。它可以像这样在 Fluent-Nibernate 中配置

    namespace FluentNHibernateTutorial.Mappings
    {
        public class StoreMap : ClassMap<Store>
        {
            public StoreMap()
            {
                Id(x => x.Id);
                Map(x => x.Name);
                HasManyToMany(x => x.Products)
                 .CollectionType<uNhAddIns.WPF.Collections.Types
                                      .ObservableListType<Product>>()
                 .Cascade.All()
                 .Table("StoreProduct");
            }
        }
    }

有谁知道如何使用 Fluent-Nibernate实现一个始终使用ObservableListType 作为默认 IList 实现的约定?

更新:完美的解决方案是用 Fluent-NHibernate-Automapper 替换

4

1 回答 1

7

这样的事情应该可以解决问题:

public class ObservableListConvention :
    IHasManyConvention, IHasManyToManyConvention, ICollectionConvention {

    // For one-to-many relations
    public void Apply(IOneToManyCollectionInstance instance) {

        ApplyObservableListConvention(instance);
    }

    // For many-to-many relations
    public void Apply(IManyToManyCollectionInstance instance) {

        ApplyObservableListConvention(instance);
    }

    // For collections of components or simple types
    public void Apply(ICollectionInstance instance) {

        ApplyObservableListConvention(instance);
    }

    private void ApplyObservableListConvention(ICollectionInstance instance) {

        Type collectionType =
            typeof(uNhAddIns.WPF.Collections.Types.ObservableListType<>)
            .MakeGenericType(instance.ChildType);
        instance.CollectionType(collectionType);
    }
}

针对问题更新:

此约定应与自动映射器一起使用,如下所示:

AutoMap.AssemblyOf<Store>(cfg)
  .Conventions.Add<ObservableListConvention>();
于 2011-02-25T08:08:48.183 回答