将类型传递给泛型方法(嵌套泛型)

时间:2011-07-03 11:48:34

标签: c# nhibernate dynamic nhibernate-mapping

如果我没有TRootEntity,但只有TYPE,我怎么能调用以下方法:

public void Class<TRootEntity>(Action<IClassMapper<TRootEntity>> customizeAction) where TRootEntity : class;

最终目标是运行以下代码

var mapper = new ModelMapper();
mapper.Class<MyClass>(ca =>
{
    ca.Id(x => x.Id, map =>
    {
        map.Column("MyClassId");
        map.Generator(Generators.HighLow, gmap => gmap.Params(new { max_low = 100 }));
    });
    ca.Property(x => x.Something, map => map.Length(150));
});

它用于创建动态NHibernate HBM。更多信息here

相关问题请参阅herehere

2 个答案:

答案 0 :(得分:10)

看看伟大的Jon Skeet的this answer。您应该能够根据自己的需要进行调整。

答案 1 :(得分:10)

您无法通过传递运行时类型来编写要运行的通用方法。

泛型需要在编译时具有类型。

您可能需要使用反射(请参阅Ferreira先生的回答,指出如何做到这一点)。