我正在尝试将 NHibernate 配置为使用 MySql 数据库。我使用以下代码:
_sessionFactory = Fluently.Configure().Database(
MySQLConfiguration.Standard.ConnectionString(
cs => cs.Server("localhost").Database("Schedule").Username("root").Password("root"))
).Mappings(m => m.FluentMappings.AddFromAssemblyOf<NHibernateHelper>()).BuildSessionFactory();
我有以下例外:
怎么解决?