User236058380 posted
I know this is not the nhibernate forum, but i am getting no responses there so if you can please help it would be appreciated.
I am just trying to go through a nhibernate tutorial, and failing misserably..
I am connecting to a msSql2003 server.
I am getting the following error when I try to run my app
Could not find the dialect in the configuration at NHibernate.Cfg.C
onfiguration.LogAndThrow(Exception exception)
here is my
configuration from hibernate.cfg.xml
<?xml version="1.0" encoding="utf-8" ?>
<hibernate-configuration xmlns="urn:nhibernate-configuration-2.2" >
<session-factory>
<property name="connection.provider">NHibernate.Connection.DriverConnectionProvider</property>
<property name="connection.driver_class">NHibernate.Driver.SqlClientDriver</property>
<property name="dialect">NHibernate.Dialect.MsSql2003Dialect</property>
<property name="proxyfactory.factory_class">NHibernate.ByteCode.Castle.ProxyFactoryFactory, NHibernate.ByteCode.Castle</property>
<property name="connection.connection_string">
"Data Source=10.0.0.15;User ID=syncuser;Password=xsync9;
Initial Catalog=HelloHibernate; Integrated Security=SSPI; "
</property>
<property name="show_sql">
false
</property>
</session-factory>
</hibernate-configuration>
any guidance would be appreciated