DbExtensions 3.8.0
See the version list below for details.
dotnet add package DbExtensions --version 3.8.0
NuGet\Install-Package DbExtensions -Version 3.8.0
<PackageReference Include="DbExtensions" Version="3.8.0" />
paket add DbExtensions --version 3.8.0
#r "nuget: DbExtensions, 3.8.0"
// Install DbExtensions as a Cake Addin #addin nuget:?package=DbExtensions&version=3.8.0 // Install DbExtensions as a Cake Tool #tool nuget:?package=DbExtensions&version=3.8.0
DbExtensions consists of basically 3 components that can be used together or separately: 1- A set of extension methods that simplifies raw ADO.NET programming, 2- A dynamic SQL API, 3- A CRUD API that integrates with System.Data.Linq.Mapping.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net40 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. |
This package has no dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
6.3.0 | 227,480 | 3/17/2022 |
6.3.0-preview2 | 255 | 1/19/2022 |
6.3.0-preview1 | 388 | 10/23/2021 |
6.2.0 | 194,317 | 12/20/2019 |
6.2.0-preview3 | 6,275 | 10/1/2019 |
6.2.0-preview2 | 14,128 | 11/16/2018 |
6.2.0-preview1 | 1,751 | 8/29/2018 |
6.1.1 | 170,624 | 2/4/2018 |
6.1.0 | 2,000 | 2/4/2018 |
6.0.1 | 17,647 | 2/14/2017 |
6.0.0 | 9,164 | 10/4/2016 |
6.0.0-rc2 | 896 | 10/3/2016 |
6.0.0-rc1 | 943 | 9/27/2016 |
6.0.0-preview4 | 1,350 | 9/23/2016 |
6.0.0-preview3 | 1,140 | 9/21/2016 |
6.0.0-preview2 | 932 | 9/16/2016 |
6.0.0-preview1 | 933 | 9/12/2016 |
5.1.0 | 34,080 | 8/21/2015 |
5.0.0 | 67,912 | 4/28/2014 |
4.4.0 | 20,432 | 3/10/2014 |
4.3.0 | 1,609 | 1/31/2014 |
4.2.0 | 3,020 | 6/24/2013 |
4.1.1 | 1,627 | 5/13/2013 |
4.1.0 | 1,605 | 1/19/2013 |
4.0.0 | 2,181 | 9/18/2012 |
4.0.0-rc | 1,199 | 9/13/2012 |
3.9.0 | 1,617 | 8/21/2012 |
3.8.2 | 1,758 | 7/13/2012 |
3.8.1 | 1,728 | 4/26/2012 |
3.8.0 | 6,026 | 3/25/2012 |
3.7.1 | 2,215 | 1/4/2012 |
3.7.0 | 1,830 | 10/11/2011 |
3.6.0 | 1,696 | 8/28/2011 |
3.5.0 | 1,908 | 6/24/2011 |
- Added DbConnection.Count() and DbConnection.LongCount() overloads that take a TextWriter for logging.
- Added DbConnection.Exists(SqlBuilder) method.
- Added SqlBuilder.Insert(int, string) method for inserting a string at the specified index.
- Added SqlBuilder.JoinSql method.
- Added DataAccessObject(MetaModel) constructor.
- Added DataAccessObject.INSERT_INTO_VALUES method.
- Added DataAccessObject.DELETE_FROM method.
- Added DataAccessObject.DELETE_FROM_WHERE method.
- Added DataAccessObject.UPDATE_SET_WHERE method.
- Added DataAccessObject.InsertDeep method.
- Added DataAccessObject.InsertMany method.
- Added DataAccessObject.Exists(SqlBuilder), DataAccessObject.Exists<T>(string, object[]) and DataAccessObject.Exists(Type, string, object[]) methods.
- Added System.Transactions integration in DataAccessObject.EnsureInTransaction .
- Renamed DataAccessObject.GetLastInsertId to LastInsertId.
- Removed obsolete members.
- Complete XML documentation comments.