-
Notifications
You must be signed in to change notification settings - Fork 934
SQLite not supported on CoreFX #1638
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
These are two distinct providers. Integrating
|
I created a driver MilestoneTG.NHibernate.Driver.Sqlite.Microsoft, but it looks like the Microsoft Driver isn't fully implemented. For example, GetSchema() fails with a NotSupportedException when using the schema exporter. It's too bad. We use SQLite for all our unit testing. |
Yes I have read that this driver was incomplete, further enforcing my opinion we should not "tweak" |
Also the Microsoft's driver does not support nested transactions (we use them to query IDs), and I guess many more issues not yet discovered. |
Today system.data.sqlite bug be closed. I need only system.data.sqlite (when released) or nhibernate update too? |
Provided they have not changed the assembly and classes naming, there will be no need of a change in NHibernate. |
Is there a way to find out all issues of the Microsoft driver? |
Well, write your own NHibernate driver using it, and try running the NHibernate tests suit with it. |
The SQLite driver currently looks for System.Data.Sqlite to load the ADO.Net provider. However, the current SQLite driver for CoreFX is provided by Microsoft as Microsoft.Data.Sqlite.
The text was updated successfully, but these errors were encountered: