All versions since 3.1.0
3.1.0
Changed
- Updated
Microsoft.Data.Sqlitefrom10.0.3to10.0.9. - Breaking: The casing has been changed from
SQLitetoSqliteto line up with the official Microsoft packages. This applies across all namespaces, but the NuGet package will probably be stuck with the old casing.
3.2.0
Added
- Trigger Support. SQLite triggers run an inline
BEGIN … ENDbody, which the provider now supports, using the inline triggerBodyadded inNSchema.Core3.2.0. A trigger is generated asCREATE TRIGGER … {BEFORE|AFTER} {event} ON t [FOR EACH ROW] [WHEN (…)] BEGIN … ENDand recovered fromsqlite_master.
Changed
- Bumped the
NSchema.Coredependency to3.2.0.
3.2.1
Fixed
- The provider will now no-longer attempt to
CREATE/DROPthemainschema.
4.0.0
Added
- Added plugin manifest to allow for automatic registration of the provider coming in `NSchema 4.0.0.
4.3.0 Latest
Added
- Data migrations. Supports the
MIGRATION … FORdata migrations introduced inNSchema.Core4.3.