Npgsql - Specified method is not supported
问题 This might be somehow connected to this other issue I had with FNH. Fluent NHibernate cannot load MySql.Data from GAC in debug mode of a test Generally I got a simple test that runs following code first: FluentConfiguration config = Fluently .Configure() .Database( PostgreSQLConfiguration.Standard.ConnectionString(c => c.FromConnectionStringWithKey("PostgreSQLConnectionString"))) .Mappings(m => m.FluentMappings.AddFromAssemblyOf<MyMapping>()); s_SessionSource = new SessionSource(config); When