बदलें MsSqlConfiguration.MsSql2005
, करने के लिए MySqlConfiguration.Standard
, यह एक चीज थी जिसका मैंने परियोजना में योगदान दिया था।
उदाहरण:
Fluently.Configure().Database(
MySqlConfiguration.Standard.ConnectionString(
c => c.FromConnectionStringWithKey("ConnectionString")
)
)
.Mappings(m => m.FluentMappings.AddFromAssemblyOf<MyAutofacModule>())
.BuildSessionFactory())