Skip to content

Releases: zzzprojects/Dapper-Plus

v1.2.8

13 Aug 13:10
Compare
Choose a tag to compare

Download the library here

FIXED: Issue with ValidateLicense overload (Issue #11)

PRO Version unlocked for the current month (August)

v1.2.7

11 Aug 19:40
Compare
Choose a tag to compare

Download the library here

FIXED: Firebird issue with double type (The library now use DOUBLE PRECISION instead)

PRO Version unlocked for the current month (August)

v1.2.6

02 Aug 17:17
Compare
Choose a tag to compare

Download the library here

ADDED: BulkSynchronize method (For SQL Server)
ADDED: Library does not longer require an open connection
FIXED: Firebird BulkMerge && BulkUpdate in some scenario

PRO Version unlocked for the current month (August)

v1.2.4

27 Jul 03:17
Compare
Choose a tag to compare

Download the library here

ADDED: Support for Firebird (Beta only, DO NOT use yet in production)

PRO Version unlocked for the current month (August)

v1.2.3

25 Jul 14:53
Compare
Choose a tag to compare

Download the library here

FIXED: Issue with SQL Server for the column size for type: Text, NText, and Image

PRO Version unlocked for the current month (August)

v1.2.2

21 Jul 16:47
Compare
Choose a tag to compare

Download the library here

ADDED AutoMapping to Enum Type
FIXED Issue with multiple nested operations

PRO Version unlocked for the current month (July)

v1.2.1

18 Jul 18:52
Compare
Choose a tag to compare

Download the library here

ADDED DapperPlusManager.ValidateLicense method

// CHECK for default provider (SQL Server)
string licenseErrorMessage;
if (!Z.Dapper.Plus.DapperPlusManager.ValidateLicense(out licenseErrorMessage))
{
    throw new Exception(licenseErrorMessage);
}

// CHECK for a specific provider
string licenseErrorMessage;
if (!Z.Dapper.Plus.DapperPlusManager.ValidateLicense(out licenseErrorMessage, ProviderType.MySql))
{
   throw new Exception(licenseErrorMessage);
}

PRO Version unlocked for the current month (July)

v1.2.0

12 Jul 03:02
Compare
Choose a tag to compare

Download the library here

BREAKING CHANGE: The AutoMapper now only map base type like int, long, DateTime.

public class Left
{
	public int ID { get; set; }
	
	public int? IntColumn { get; set; }

	// NO longer mapped by the AutoMap
	public Test Item { get; set; }

	// NO longer mapped by the AutoMap
	public List<Test> Items { get; set; }
}

PRO Version unlocked for the current month (July)

v1.1.5

29 Jun 17:02
Compare
Choose a tag to compare

Download the library here

PRO Version unlocked for the current month (July)

v1.1.4

13 Jun 00:31
Compare
Choose a tag to compare

Download the library here

FIXED: Additional Issue with null value in DataSource. By default, the library will now skip all null value.

PRO Version unlocked for the current month (June)