Click here to Skip to main content
15,885,010 members
Articles / Hosted Services / Azure

WCF by Example - Chapter XVI - EF 5 & SQL CE - AzureWebSites Deployment

Rate me:
Please Sign up or sign in to vote.
4.33/5 (6 votes)
31 Jan 2013CPOL11 min read 45.2K   1.6K   21  
EF Code First implementation of generic repository and unit of work. With deployment to Azure web sites using SQL Compact.
<?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="connection.provider">NHibernate.Connection.DriverConnectionProvider</property>
		<property name="dialect">NHibernate.Dialect.MsSql2005Dialect</property>
		<property name="connection.driver_class">NHibernate.Driver.SqlClientDriver</property>
		<property name="connection.connection_string">Server=.\SQLEXPRESS;Database=eDirectory;Integrated Security=SSPI;</property>

		<property name="show_sql">false</property>
		<property name="hbm2ddl.keywords">none</property>
		<property name="cache.use_second_level_cache">true</property>
		<property name="cache.use_query_cache" >true</property>
		<property name="cache.provider_class">NHibernate.Cache.HashtableCacheProvider</property>
	</session-factory>
</hibernate-configuration>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
Ireland Ireland
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions