MySql データベースを使用するように NHibernate を構成しようとしています。次のコードを使用します。
_sessionFactory = Fluently.Configure().Database(
MySQLConfiguration.Standard.ConnectionString(
cs => cs.Server("localhost").Database("Schedule").Username("root").Password("root"))
).Mappings(m => m.FluentMappings.AddFromAssemblyOf<NHibernateHelper>()).BuildSessionFactory();
次の例外があります。
の解き方?