Releases: DapperLib/Dapper
Releases Β· DapperLib/Dapper
2.1.11
What's Changed
- Auto-detect stored procedures as anything without whitespace by @mgravell in #1975
- Add DuckDB tests by @Giorgi in #1970
- Add a setting to turn off Ole Db anonymous parameter check by @Giorgi in #1974
- Revert $ check for OLEDB anonymous parameters by @mgravell in #1979
- Change nullability annotation for ITypeMap.GetConstructorParameter by @mgravell in #1980
Full Changelog: 2.1.4...2.1.11
2.1.4
2.1.1
2.0.151
2.0.143
2.0.138
- (#1910 via @mgravell, fix #1907, #1263)
- add support for
SqlDecimaland other types that need to be accessed viaDbDataReader.GetFieldValue<T> - add an overload of
AddTypeMapthat supportsDbDataReader.GetFieldValue<T>for additional types - acknowledge that in reality we only support
DbDataReader; this has been true (viaDbConnection) forasyncforever
- add support for
- (#1912 via @mgravell)
- add missing
AsyncEnumerable<T> QueryUnbufferedAsync<T>(...)andGridReader.ReadUnbufferedAsync<T>(...)APIs (.NET 5 and later) - implement
IAsyncDisposableonGridReader(.NET 5 and later)
- add missing