I want to use SQL Server 2005 Express as database. Will NHibernate be supported with it?
Asked
Active
Viewed 181 times
2 Answers
1
It seems it is supported.
A tutorial ( https://web.archive.org/web/20130926011158/http://www.svendtofte.com/serverside/setting-up-nhibernate-20/ ) goes over setting up NHibernate and uses SQL Express 2005

DeadChex
- 4,379
- 1
- 27
- 34
-
Updated the link. – DeadChex Oct 28 '20 at 20:48
1
Yes. Use:
- Driver -
NHibernate.Driver.SqlClientDriver
- Dialect -
NHibernate.Dialect.MsSql2005Dialect

Thilak Nathen
- 1,333
- 1
- 8
- 13
-
1For a shorter configuration, you can avoid specifying the driver since the dialect will indicate its preferred driver. – Oskar Berggren Dec 18 '12 at 12:03