I'm trying to configure NHibernate to use a MySql database. I use the following code:
_sessionFactory = Fluently.Configure().Database(
MySQLConfiguration.Standard.ConnectionString(
cs => cs.Server("localhost").Database("Schedule").Username("root").Password("root"))
).Mappings(m => m.FluentMappings.AddFromAssemblyOf<NHibernateHelper>()).BuildSessionFactory();
and I have the following exception :
how to solve?
