将Fluent-NHibernate与不同数据库模式中的表一起使用

时间:2010-07-08 05:50:33

标签: fluent-nhibernate attributes schema annotations

我有一个数据库,我正在运行几个应用程序。我喜欢通过为每个应用程序创建一个模式来分离表。对于我最新的应用程序,我正在使用FluentNHibernate。好像我有大部分管道正确,但当我尝试查询我的一个表时,它找不到我的表。我运行了查询分析器,发现查询中没有包含架构。

我根本不知道在我的类(实体或映射器)上放什么,所以NHibernate知道这个类属于哪个模式。在我的类中放置哪些内容以及将它们链接到模式?

我过去使用过Castle ActiveRecord,它有一个与此类似的属性:

[ActiveRecord的(模式=运动)]

感谢您的帮助。

1 个答案:

答案 0 :(得分:5)

阅读更多内容后,可以在网站的Fluent NHibernate常见问题解答部分找到答案。

http://wiki.fluentnhibernate.org/Mapping_a_collection_that_uses_a_private_backing_field

public class PersonMap : ClassMap<Person>
{
  public PersonMap()
  {
    Schema("alternativeSchema");
  }
}