2

按照本教程学习 NHibernate您的第一个基于 NHibernate 的应用程序和我到了您调用 new SchemaExport(cfg).Execute(true, true, false); 测试方法以导出模式(创建 Product 表)以验证 NHibernate 设置正确的地步

[Test]
public void Can_generate_schema()
{
    var cfg = new Configuration();
    cfg.Configure();
    cfg.AddAssembly(typeof(Product).Assembly);

    new SchemaExport(cfg).Execute(true, true, false);
}

映射

<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2" assembly="MyFirstNHibernateProject" namespace="MyFirstNHibernateProject.Domain">
  <class name="Product">
    <id name="Id">
      <generator class="guid"></generator>
    </id>
    <property name="Name"></property>
    <property name="Category"></property>
    <property name="Discontinued"></property>
  </class>
</hibernate-mapping>

配置

<hibernate-configuration xmlns="urn:nhibernate-configuration-2.2">
  <session-factory>
    <property name="connection.provider">NHibernate.Connection.DriverConnectionProvider</property>
    <property name="dialect">NHibernate.Dialect.MsSqlCeDialect</property>
    <property name="connection.driver_class">NHibernate.Driver.SqlServerCeDriver</property>
    <property name="connection.connection_string">Data Source=MyFirstNHibernateProject.sdf</property>

    <property name="show_sql">true</property>
  </session-factory>
</hibernate-configuration>

测试通过了,我什至可以看到创建表的输出 sql,但该表没有在数据库中创建(sql server compact),我在服务器资源管理器中刷新了数据库,它仍然是空的。

我检查了这些帖子
NHibernate SchemaExport not created table
NHibernate SchemaExport 在“脚本”为假时
不创建表 NHibernate 不创建表
,但它们都没有解决我的问题。有任何想法吗?

4

1 回答 1

1

我建议在连接字符串中使用完整路径:

// instead of this
<property name="connection.connection_string"
    >Data Source=MyFirstNHibernateProject.sdf</property>

// we should use 
<property name="connection.connection_string"
    >Data Source=C:\MyFirstNHibernateProject\MyFirstNHibernateProject.sdf</property>

其中"C:\MyFirstNHibernateProject\"应该是完整路径"MyFirstNHibernateProject.sdf"

另外,如果您要起诉 CE 4.0,我建议使用这种方言:

<property name="dialect">NHibernate.Dialect.MsSqlCe40Dialect</property>
于 2015-06-16T07:01:03.060 回答