wolli wrote:
Can you post ypour web.config ? I'm also using SQL Server 2008 and MsSQL2005Dialect works for me.
Actually - I just figured it out. Here is what I have in my web.config and it works:
<hibernate-configuration xmlns="urn:nhibernate-configuration-2.2">
<session-factory>
<property name="dialect">NHibernate.Dialect.MsSql2005Dialect</property>
<property name="connection.provider">NHibernate.Connection.DriverConnectionProvider</property>
<property name="connection.connection_string">Data Source=.\SQLExpress;Initial Catalog=[Catalog Name];Integrated Security=True</property>
</session-factory>
</hibernate-configuration>
Thanks for replying!
Shawn