Applied patch from Jan Limpens 'ReflectionBasedDictionaryAdapter needs to check if...
[castle.git] / Tools / VSNetWizards / CastleTemplates / VS8 / CSharp / AR / App.config
blobd917d8c52a8c3029a8f85d497407762ad79aad77
1 <?xml version="1.0" encoding="utf-8" ?>
3 <configuration>
5 <configSections>
6 <section name="activerecord"
7 type="Castle.ActiveRecord.Framework.Config.ActiveRecordSectionHandler, Castle.ActiveRecord" />
8 </configSections>
10 <!-- For the configuratio reference, check -->
11 <!-- http://www.castleproject.org/index.php/ActiveRecord:Configuration_Reference -->
12 <activerecord>
14 <!-- The configuration below is good enough for MS SQL Server only -->
16 <config>
17 <add key="hibernate.connection.driver_class" value="NHibernate.Driver.SqlClientDriver" />
18 <add key="hibernate.dialect" value="NHibernate.Dialect.MsSql2000Dialect" />
19 <add key="hibernate.connection.provider" value="NHibernate.Connection.DriverConnectionProvider" />
20 <add key="hibernate.connection.connection_string" value="Data Source=.;Initial Catalog=mydatabase;Integrated Security=SSPI" />
21 </config>
23 </activerecord>
25 </configuration>