Skip to content

Releases: seesharper/DbReader

v2.4.0

31 May 18:04
eb72df1
Compare
Choose a tag to compare

Change Log

v2.4.0 (5/31/21)

Full Changelog

Merged Pull Requests

Added support for C# record types (5/31/21) #52 (seesharper)

This PR adds support for C# 9 record types

v2.3.7

18 Nov 22:26
b3ff15d
Compare
Choose a tag to compare

Change Log

v2.3.7 (11/18/20)

Full Changelog

Merged Pull Requests

Bugfix caching (11/18/20) #51 (seesharper)

This PR fixes a serious bug in OneToManyMethodBuilder and ManyToOneMethodBuilder where we closed around the IInstanceReader causing the "old" reader to be used in any subsequent read operations.

v2.3.6

12 Nov 16:01
121f22d
Compare
Choose a tag to compare

Change Log

v2.3.6 (11/12/20)

Full Changelog

Merged Pull Requests

Fixed enum convert function (11/12/20) #50 (seesharper)

This PR fixes a bug that caused a custom converter function not to be called for enums

v2.3.5

26 Sep 19:39
Compare
Choose a tag to compare

v2.3.4

18 Jun 12:21
1110d8b
Compare
Choose a tag to compare

Change Log

v2.3.4 (6/18/20)

Full Changelog

Merged Pull Requests

Feature/parameter exception (6/18/20) #49 (seesharper)

v2.3.3

24 Apr 15:05
90e0389
Compare
Choose a tag to compare

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

  • Missing [Fact] attribute in TypeExtensionTests and ValueConverterTests (4/14/20) #46 (gjoranf)

v2.3.2

03 Apr 13:22
7bbed47
Compare
Choose a tag to compare

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

27 Mar 10:18
bec782a
Compare
Choose a tag to compare

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

27 Feb 22:02
ab48721
Compare
Choose a tag to compare

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

v2.2.1

22 Jan 21:49
468a2da
Compare
Choose a tag to compare

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.