如何使用Fluent NHibernate AutoMapping更改模式

时间:2009-11-27 10:21:28

标签: fluent-nhibernate fluent

在我的数据库中,每个表都属于一个模式(例如Person。)我正在使用Fluent NHibernate和Automapping,我的问题是如何设置我想要使用的模式。

2 个答案:

答案 0 :(得分:1)

使用convention,特别是IClassConvention

答案 1 :(得分:0)

public class SchemaConvention : IClassConvention
{
    public void Apply(IClassInstance instance)
    {
        instance.Schema("schemaNameGoesHere");
    }
}