// // NHibernateConfiguration.cs // // Author: // Bryan Allred // // Copyright (c) 2011 Bryan Allred // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell // copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in // all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN // THE SOFTWARE. using FluentNHibernate.Cfg; using FluentNHibernate.Cfg.Db; using NHibernate; using NHibernate.Cfg; using NHibernate.Tool.hbm2ddl; namespace WhiteNoise.Domain.NHibernate { /// /// NHibernate configuration. /// public class NHibernateConfiguration { /// /// The connection string. /// private readonly string connectionString; /// /// The provider. /// private readonly string provider; /// /// Initializes a new instance of the class. /// /// /// Connection string. /// /// /// Provider. /// public NHibernateConfiguration(string connectionString, string provider) { this.connectionString = connectionString; this.provider = provider; } /// /// Creates the database configuration. /// /// /// The database configuration. /// /// /// Connection string. /// /// /// Provider. /// public static IPersistenceConfigurer CreateDatabaseConfiguration(string connectionString, string provider) { switch (provider) { case "MsSql2008": case "System.Data.SqlClient": return MsSqlConfiguration.MsSql2008 .ConnectionString(connectionString).ShowSql(); case "Firebird": return new FirebirdConfiguration() .ConnectionString(connectionString); case "MySql": return MySQLConfiguration.Standard .ConnectionString(connectionString); case "MsSqlCe": return MsSqlCeConfiguration.Standard .ConnectionString(connectionString); case "SQLite": return SQLiteConfiguration.Standard .ConnectionString(connectionString); case "JetDriver": return JetDriverConfiguration.Standard .ConnectionString(connectionString); case "PostgreSQL": return PostgreSQLConfiguration.Standard .Raw("hbm2ddl.keywords","none") .ConnectionString(connectionString); default: return MsSqlConfiguration.MsSql2008 .ConnectionString(connectionString); } } /// /// Creates the session factory. /// /// /// The session factory. /// public ISessionFactory CreateSessionFactory() { Configuration configuration = Fluently.Configure() .Database(CreateDatabaseConfiguration(this.connectionString, this.provider)) .Mappings(m => m.FluentMappings.AddFromAssemblyOf()) .BuildConfiguration(); // Update the schema. new SchemaUpdate(configuration).Execute(true, true); return configuration.BuildSessionFactory(); } } }