多租户带NHibernate + Castle Windsor(单个应用程序,多个DB)

时间:2011-05-06 04:13:38

标签: asp.net-mvc nhibernate castle-windsor multi-tenant

使用单个应用实例/每个租户的多个数据库创建一个多租户asp.net mvc 3应用。还将有一个单独的“主”数据库,它将包含特定于租户的信息(启用的功能,租户数据库连接信息等)。新手NHibernate& IOC(Castle Windsor)并使用this tutorial来获得基本的CRUD设置。

以下是我使用的(从上面提到的教程)到'使用'NHibernate:

 public class PersistenceFacility : AbstractFacility
    {
        protected override void Init()
        {
            var config = BuildDatabaseConfiguration();

            Kernel.Register(
                Component.For<ISessionFactory>()
                    .UsingFactoryMethod(config.BuildSessionFactory),
                Component.For<ISession>()
                    .UsingFactoryMethod(k => k.Resolve<ISessionFactory>().OpenSession())
                    .LifeStyle.PerWebRequest);
        }

        private Configuration BuildDatabaseConfiguration()
        {
            return Fluently.Configure()
                .Database(SetupDatabase)
                .Mappings(m =>
                {
                    m.FluentMappings.AddFromAssemblyOf<SectionMap>()
                                    .Conventions.AddFromAssemblyOf<TableNameConvention>();
                })
                .ExposeConfiguration(ConfigurePersistence)
                .BuildConfiguration();
        }

        protected virtual AutoPersistenceModel CreateMappingModel()
        {
            var m = AutoMap.Assembly(typeof(EntityBase).Assembly)
                .Where(IsDomainEntity)
                .OverrideAll(ShouldIgnoreProperty)
                .IgnoreBase<EntityBase>();

            return m;
        }

        protected virtual IPersistenceConfigurer SetupDatabase()
        {
            return MsSqlConfiguration.MsSql2008
                .DefaultSchema("dbo") 
                .UseOuterJoin()
                .ProxyFactoryFactory(typeof(ProxyFactoryFactory))
                .ConnectionString(x => x.FromConnectionStringWithKey("MasterDB"))
                .ShowSql();
        }

        protected virtual void ConfigurePersistence(Configuration config)
        {
            SchemaMetadataUpdater.QuoteTableAndColumns(config);
        }

        protected virtual bool IsDomainEntity(Type t)
        {
            return typeof(EntityBase).IsAssignableFrom(t);
        }

        private void ShouldIgnoreProperty(IPropertyIgnorer property)
        {
            property.IgnoreProperties(p => p.MemberInfo.HasAttribute<DoNotMapAttribute>());
        }
    }

我正在考虑的方法是应用程序将查看主机头/ url以确定租户,然后查询“master”数据库以获取相应租户的数据库连接信息。我猜我必须采取的方法是每个客户端有一个单独的SessionFactory - 唯一的问题是我不知道如何(以及在​​哪里)集成它。非常感谢任何帮助/指示,以更好地了解如何[a]解决这个问题[b]更好地了解如何使用Castle Windsor。道歉,因为castle site似乎是一个很好的资源,但像我这样的新手不容易理解。

谢谢!

环境:ASP.NET MVC 3,.NET 4,Castle Windsor + Fluent NHibernate + NHibernate(通过NuGet)

1 个答案:

答案 0 :(得分:1)

通常采用的方法是拥有多个会话工厂(每个租户一个),并使用IHandlersSelector根据请求中的某些数据选择正确的工厂。

关于文档不容易理解的说法,如果你想指出你发现不太容易理解的部分,我们很想改进它。