第一次使用nhibernate,使用是发生了“Could not find the dialect in the configuration”,使用的nhibernate是“NHibernate-2.0.0.CR2-bin”,请问是什么原因啊?
2 回答
烙印99
TA贡献1829条经验 获得超13个赞
少了dialect属性设置 <hibernate-configuration xmlns="urn:nhibernate-configuration-2.2"> <session-factory > <property name="dialect">NHibernate.Dialect.MsSql2000Dialect</property> <property name="connection.provider">NHibernate.Connection.DriverConnectionProvider</property> <property name="connection.driver_class">NHibernate.Driver.SqlClientDriver</property> <property name="connection.connection_string">Data Source=DH-DB;Database=GanLuoDB;User ID=sa;Password=sa;</property> <mapping assembly="Entity" /> </session-factory> </hibernate-configuration>
- 2 回答
- 0 关注
- 263 浏览
添加回答
举报
0/150
提交
取消