Releases: seesharper/DbReader
v2.3.4
Change Log
v2.3.4 (6/18/20)
Full Changelog
Merged Pull Requests
Feature/parameter exception (6/18/20) #49 (seesharper)
v2.3.3
Change Log
v2.3.3 (4/24/20)
Full Changelog
Merged Pull Requests
Enabled missing tests (4/14/20) #47 (seesharper)
This PR closes #46
Handle null for scalar values (4/24/20) #48 (seesharper)
This PR fixes a bug when executing ExecuteScalar and the result set contains a null value,
Closed Issues
v2.3.2
Change Log
v2.3.2 (4/3/20)
Full Changelog
Merged Pull Requests
Make sure that we dispose commands and readers (4/3/20) #45 (seesharper)
This PR ensures that we always dispose all command and readers.
v2.3.1
Change Log
v2.3.1 (3/27/20)
Full Changelog
Merged Pull Requests
Make ParameterHelper public (3/27/20) #44 (seesharper)
We made ParameterHelper public because we had issues with .Net 4.6.1 using the netstandard version of DbReader.
The reason is that we don't skip visibility in netstandard and that don't play well with .Net 4.6.1
v2.3.0
Change Log
v2.3.0 (2/27/20)
Full Changelog
Merged Pull Requests
Feature/arguments builder (2/27/20) #43 (seesharper)
This PR adds enables arguments to be dynamically added using the ArgumentsBuilder
Closed Issues
- More Documentation (2/27/20) #1 (seesharper)
- Allow reading simple types (2/27/20) #4 (seesharper)
v2.2.1
Change Log
v2.2.1 (1/22/20)
Full Changelog
Merged Pull Requests
Fixed closure bug (1/22/20) #42 (seesharper)
This fixes a bug where we closed a lambda around a datarecord causing it to be reused when retrieved from the cache.
v2.2.0
Change Log
v2.2.0 (1/17/20)
Full Changelog
Merged Pull Requests
Simple types (1/17/20) #41 (seesharper)
This PR adds support for getting a list of "simple types" such as strings or integers.
v2.1.6
Change Log
v2.1.6 (12/10/19)
Full Changelog
Merged Pull Requests
Fixed NRE for null in navigation chain (12/10/19) #40 (seesharper)
This PR fixes a NRE that occurred when a null value was in the middle of the navigation property chain
v2.1.5
Change Log
v2.1.5 (12/6/19)
Full Changelog
Merged Pull Requests
Skip visibility checks on net462 (12/6/19) #39 (seesharper)
This PR skips visibility checks on NET462
v2.1.4
Change Log
v2.1.4 (12/5/19)
Full Changelog
Merged Pull Requests
Fixed Command Initializer (12/5/19) #38 (seesharper)
This PR fixes a regression witch caused the CommandInitializer to be executed after parsing the query.