3

我在 ASP.NET MVC4 应用程序中使用带有代码优先实体和映射的 PostgreSQL 和 Fluent NHibernate。

当我运行应用程序时,它会自动从数据库中删除每条记录。

这是我的 NHibernateHelper 类

public class NHibernateHelper
{
    private static ISessionFactory _sessionFactory;

    private static ISessionFactory SessionFactory 
    {
        get 
        {
            if (_sessionFactory == null)
                InitializeSessionFactory();
            return _sessionFactory;
        }
    }

    private static void InitializeSessionFactory()
    {
        _sessionFactory = Fluently.Configure()
            .Database(PostgreSQLConfiguration.Standard
                        .ConnectionString(
                            @"Server=localhost;Port=5432;Database=TestDB;User=postgres;Password=postgre;")
                        .ShowSql()
            )
            .Mappings(m => m.FluentMappings.AddFromAssemblyOf<ProductCategory>())
            .ExposeConfiguration(cfg => new SchemaExport(cfg)
                            .Create(true, true))
            .BuildSessionFactory();
    }

    public static ISession OpenSession() 
    {
        return SessionFactory.OpenSession();
    }

有什么不正确的配置吗?

4

1 回答 1

8

我想说问题出在这里:

.ExposeConfiguration(cfg => new SchemaExport(cfg).Create(true,true))

每次构建会话工厂时,您似乎都在导出模式。现在我不是 100% 确定(我从来没有使用代码优先来生成表,只映射到我事先创建的现有数据库),但我敢打赌,导出会覆盖你已经拥有的(删除和重新创建或其他) .

在这里,有人在使用 Fluent NHibernate 导出架构时遇到了 SQLite 文件被覆盖的类似问题,所以我想说你必须小心何时以及如何(重新)创建数据库:)

于 2013-03-02T21:30:21.277 回答