What's Changed since Release 0.7.2
- Decoupling Dapper by @carl-berg in #24
- Geography parameter handling by @carl-berg in #25
- Feature/static caching by @carl-berg in #26
- Default time value by @carl-berg in #27
- Handling default values (including null) for most sql server data types by @carl-berg in #29
- Stabilizing for 0.8.0 Release by @carl-berg in #30
Some details on the changes:
- Targeting
netstandard2.1
to enable some more modern development - No longer dependent on
Dapper
(we don't want to complicate things for users who might use a different version ofDapper
) - Better default support of SqlServer data types to help with nullable values (including
geography
). - Static caching of schema and dependency tree is now enabled by default, but can be turned off using
dude.DisableStaticCaching()
- Automatic handling of foreign keys is can now be enabled with either of these methods:
dude.EnableAutomaticForeignKeys()
which enables automatic foreign keys, but not automatic inserts of missing dependenciesdude.EnableAutomaticInsertOfForeignKeys()
which enables automatic foreign keys and automatic inserts of missing dependencies
Full Changelog: 0.7.2...0.8.0