Mysql
 sql >> Base de données >  >> RDS >> Mysql

Comment configurer nHibernate fluide avec MySQL

Modifier MsSqlConfiguration.MsSql2005 , à MySqlConfiguration.Standard , c'est la seule chose à laquelle j'ai contribué au projet.

Exemple :

Fluently.Configure().Database(
        MySqlConfiguration.Standard.ConnectionString(
            c => c.FromConnectionStringWithKey("ConnectionString")
        )
    )
    .Mappings(m => m.FluentMappings.AddFromAssemblyOf<MyAutofacModule>())
    .BuildSessionFactory())