2

我正在使用 NHibernate 3.3 并尝试通过反射将我的类层次结构映射到 DB,如下所示:

class Parent
{
    public virtual IList<Child> Children { get; set; }
}

class Child
{
    public virtual Parent MyParent { get; set; }
}

public class ParentMap : ClassMap<Parent>
{
    public ParentMap()
    {
        Helper.Map(this);
    }
}

public class Helper
{
    public static void Map<T>(ClassMap<T> map)
    {
        foreach (var property in typeof(T).GetProperties())
        {
            // creating lambda x => x.Children

            var arg = Expression.Parameter(typeof(T), "x");
            Expression expr = Expression.Property(arg, property);

            // Func<Parent, IList<Child>> does not work in HasMany()
            // var type = typeof(Func<,>).MakeGenericType(typeof(T), property.PropertyType);

            // but IEnumerable works
            var type = property.PropertyType.GetGenericArguments()[0];  // Child
            type = typeof(IEnumerable<>).MakeGenericType(type);         // IEnumerable<Child>
            type = typeof(Func<,>).MakeGenericType(typeof(T), type);    // Func<Parent, IEnumerable<Child>>

            dynamic lambda = Expression.Lambda(type, expr, arg);
            map.HasMany(lambda);
        }
    }
}

上面只是一个简化的例子,主要思想是为每个集合属性动态调用 HasMany()。我似乎找不到更直接的方法来做到这一点,但它确实有效。

问题是当我将 Cascade.All() 应用于地图时,会导致 StackOverflow 异常。当手动完成映射时,这工作得很好,所以它不太可能是一个映射错误的问题。

4

0 回答 0