Closed
Description
i have a xamarin .net standard 2.0.3 project and try to use nhibernate with sqlite but get the error "System.PlatformNotSupportedException"
The error comes within this code from a .net standard 2.0.3 project:
var cfg = new Configuration().DataBaseIntegration(db =>
{
db.Driver<SQLite20Driver>();
db.Dialect<SQLiteDialect>();
db.ConnectionString = "Data Source=test.db;Version=3;New=True";
});
With just a (xunit) testproject and the nhibernate project this code works fine, but not if i want to start this code within an andorid system.