流畅的NHibernate会自动删除数据

时间:2013-03-02 20:56:27

标签: c# asp.net-mvc postgresql fluent-nhibernate

我在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();
    }

是否有不正确的配置?

1 个答案:

答案 0 :(得分:7)

我会说问题出在这里:

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

每次构建会话工厂时,您似乎都在导出架构。现在我不是100%肯定(我从来没有使用代码优先生成表,只映射到我之前创建的现有数据库),但我打赌导出会覆盖你已经拥有的东西(丢弃和重新创建或者其他) )。

Here当使用Fluent NHibernate导出模式时,有人遇到类似的SQLite文件被覆盖的问题,所以我要说你必须小心你何时以及如何(重新)创建数据库:)