_sessionFactory = Fluently.Configure().Database(MySQLConfiguration.Standard
.ConnectionString(@"Server=localhost; Port=3306;
Database=[org0001]; Uid=root; Pwd=;").ShowSql())
.Mappings(m => m.FluentMappings.AddFromAssemblyOf<Models.reference>())
.BuildSessionFactory();
我的错误:
FluentNHibernate.dll中出现“FluentNHibernate.Cfg.FluentConfigurationException”类型的异常,但未在用户代码中处理
其他信息:创建SessionFactory时使用了无效或不完整的配置。检查PotentialReasons集合,以及InnerException以获取更多详细信息。
EDİT:我的解决方案是安装MySQL Connector Net。 GL大家