Files
AidA/packages/NHibernate.5.5.2/ConfigurationTemplates/SqlServerCe.cfg.xml
2025-04-29 18:47:00 +02:00

17 lines
809 B
XML

<?xml version="1.0" encoding="utf-8"?>
<!--
This template was written to work with NHibernate.Test.
Copy the template to your NHibernate.Test project folder and rename it in hibernate.cfg.xml and change it
for your own use before compile tests in VisualStudio.
-->
<!-- This is the System.Data.dll provider for SQL Server -->
<hibernate-configuration xmlns="urn:nhibernate-configuration-2.2" >
<session-factory name="NHibernate.Test">
<property name="command_timeout">0</property>
<property name="connection.driver_class">NHibernate.Driver.SqlServerCeDriver</property>
<property name="connection.connection_string">
Data Source=NHibernate.sdf
</property>
<property name="dialect">NHibernate.Dialect.MsSqlCe40Dialect</property>
</session-factory>
</hibernate-configuration>