DapperExtensions 1.4.4
dotnet add package DapperExtensions --version 1.4.4
NuGet\Install-Package DapperExtensions -Version 1.4.4
<PackageReference Include="DapperExtensions" Version="1.4.4" />
<PackageVersion Include="DapperExtensions" Version="1.4.4" />
<PackageReference Include="DapperExtensions" />
paket add DapperExtensions --version 1.4.4
#r "nuget: DapperExtensions, 1.4.4"
#:package DapperExtensions@1.4.4
#addin nuget:?package=DapperExtensions&version=1.4.4
#tool nuget:?package=DapperExtensions&version=1.4.4
A small library that complements Dapper by adding basic CRUD operations (Get, Insert, Update, Delete) for your POCOs. For more advanced querying scenarios, Dapper Extensions provides a predicate system.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET Framework | net40 is compatible. net40-client is compatible. net403 was computed. net45 was computed. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
-
- Dapper (>= 1.12.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
1.4.4
* ReadOnly property not being checked (ptct.rmsantos)
* Cast Error when inserting in MySql (cortz)
1.4.3
* Fixed error when mapping property more than once. (jafin)
* Fixed error when group predicate was empty. (jafin)
* Add GetSet method for paging using first/max rows instead of page number.
1.4.2
* Initial Release of PostgreSqlDialect
1.4.1
* Paramater Prefix added to SqlDialect
* Error when Column and Property key name were different while performing an update.
1.4.0
* Add Database Class in order to have multiple connections with different dialects. (Extension methods are still available)
* Errors with Predicate not using proper SqlDialect
* MySql and Sqlite dialects are ready.
* ***BREAKNG CHANGE*** Renamed DapperExtensions.IDapperExtensionsImpl to IDapperImplementor
* ***BREAKNG CHANGE*** Renamed ISqlDialect.RunIdentityInsertAsBatch to ISqlDialect.SupportsMultipleStatements
* Added GetMultiple method
* GetList, GetPage, Count, Delete will now accept an object as the Predicate for Equals predicates.