-
Notifications
You must be signed in to change notification settings - Fork 934
Closed
Labels
Description
Today we updated one of our solutions to the current nhibernate version 5.3.2. During the startup phase we perform a schema validation of the sqlite database file. After the upgrade from 5.2.6 we receive validation errors for all columns of type bool and datetime:
- Found: datetime, Expected TEXT
- Found: bool, Expected INTEGER
The application works without any noticable errors, if we skip the schema validation.
If we change the db-configuration from sqilte to sql server, the schema validation does not report any errors.