当我没有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

最佳答案

您不能通过传递运行时类型来编码要运行的通用方法。

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

您可能需要使用反射(有关如何执行此操作的信息,请参阅费雷拉先生的回答)。

关于c# - 将类型传递给泛型方法(嵌套泛型),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6562685/

10-14 08:32