Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,21 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/) and
this project adheres to [Semantic Versioning](https://semver.org/).

## [3.0.0] - 2026-05-29

### Changed
- **BREAKING:** All NuGet packages have been renamed:
- RentADeveloper.DbConnectionPlus > DbConnectionPlus
- RentADeveloper.DbConnectionPlus.DatabaseAdapters.MySql > DbConnectionPlus.DatabaseAdapters.MySql
- RentADeveloper.DbConnectionPlus.DatabaseAdapters.Oracle > DbConnectionPlus.DatabaseAdapters.Oracle
- RentADeveloper.DbConnectionPlus.DatabaseAdapters.PostgreSql > DbConnectionPlus.DatabaseAdapters.PostgreSql
- RentADeveloper.DbConnectionPlus.DatabaseAdapters.Sqlite > DbConnectionPlus.DatabaseAdapters.Sqlite
- RentADeveloper.DbConnectionPlus.DatabaseAdapters.SqlServer > DbConnectionPlus.DatabaseAdapters.SqlServer

### Migration from 2.x

1. Remove the 'RentADeveloper.DbConnectionPlus*' packages and add the 'DbConnectionPlus*' packages.

## [2.0.0] - 2026-03-21

### Changed
Expand Down
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[![NuGet Version](https://img.shields.io/nuget/v/RentADeveloper.DbConnectionPlus)](https://www.nuget.org/packages/RentADeveloper.DbConnectionPlus/)
[![NuGet Version](https://img.shields.io/nuget/v/DbConnectionPlus)](https://www.nuget.org/packages/DbConnectionPlus/)
[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=rent-a-developer_DbConnectionPlus&metric=alert_status)](https://sonarcloud.io/summary/new_code?id=rent-a-developer_DbConnectionPlus)
[![license](https://img.shields.io/badge/License-MIT-purple.svg)](LICENSE.md)
![semver](https://img.shields.io/badge/semver-2.0.0-blue)
![semver](https://img.shields.io/badge/semver-3.0.0-blue)

# ![image icon](https://raw.githubusercontent.com/rent-a-developer/DbConnectionPlus/main/icon.png) DbConnectionPlus
A lightweight .NET ORM and extension library for the type
Expand Down Expand Up @@ -88,24 +88,24 @@ First, [install NuGet](https://docs.nuget.org/docs/start-here/installing-nuget).
Install the core package:

```shell
PM> Install-Package RentADeveloper.DbConnectionPlus
PM> Install-Package DbConnectionPlus
```

Then install the adapter package for the database system you use:

| Database | Package |
|-------------|--------------------------------------------------------------------------|
| SQL Server | `RentADeveloper.DbConnectionPlus.DatabaseAdapters.SqlServer` |
| MySQL | `RentADeveloper.DbConnectionPlus.DatabaseAdapters.MySql` |
| PostgreSQL | `RentADeveloper.DbConnectionPlus.DatabaseAdapters.PostgreSql` |
| Oracle | `RentADeveloper.DbConnectionPlus.DatabaseAdapters.Oracle` |
| SQLite | `RentADeveloper.DbConnectionPlus.DatabaseAdapters.Sqlite` |
| SQL Server | `DbConnectionPlus.DatabaseAdapters.SqlServer` |
| MySQL | `DbConnectionPlus.DatabaseAdapters.MySql` |
| PostgreSQL | `DbConnectionPlus.DatabaseAdapters.PostgreSql` |
| Oracle | `DbConnectionPlus.DatabaseAdapters.Oracle` |
| SQLite | `DbConnectionPlus.DatabaseAdapters.Sqlite` |

For example, to use SQL Server:

```shell
PM> Install-Package RentADeveloper.DbConnectionPlus
PM> Install-Package RentADeveloper.DbConnectionPlus.DatabaseAdapters.SqlServer
PM> Install-Package DbConnectionPlus
PM> Install-Package DbConnectionPlus.DatabaseAdapters.SqlServer
```

### Register Database Adapters
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
<IncludeSymbols>true</IncludeSymbols>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<PackageId>DbConnectionPlus.DatabaseAdapters.MySql</PackageId>
<PackageIcon>Resources\icon.png</PackageIcon>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
<PackageProjectUrl>https://github.com/rent-a-developer/DbConnectionPlus</PackageProjectUrl>
Expand All @@ -31,7 +32,7 @@
<TieredCompilation>true</TieredCompilation>
<TieredPGO>true</TieredPGO>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<Version>2.0.0</Version>
<Version>3.0.0</Version>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
<IncludeSymbols>true</IncludeSymbols>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<PackageId>DbConnectionPlus.DatabaseAdapters.Oracle</PackageId>
<PackageIcon>Resources\icon.png</PackageIcon>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
<PackageProjectUrl>https://github.com/rent-a-developer/DbConnectionPlus</PackageProjectUrl>
Expand All @@ -31,7 +32,7 @@
<TieredCompilation>true</TieredCompilation>
<TieredPGO>true</TieredPGO>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<Version>2.0.0</Version>
<Version>3.0.0</Version>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
<IncludeSymbols>true</IncludeSymbols>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<PackageId>DbConnectionPlus.DatabaseAdapters.PostgreSql</PackageId>
<PackageIcon>Resources\icon.png</PackageIcon>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
<PackageProjectUrl>https://github.com/rent-a-developer/DbConnectionPlus</PackageProjectUrl>
Expand All @@ -31,7 +32,7 @@
<TieredCompilation>true</TieredCompilation>
<TieredPGO>true</TieredPGO>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<Version>2.0.0</Version>
<Version>3.0.0</Version>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
<IncludeSymbols>true</IncludeSymbols>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<PackageId>DbConnectionPlus.DatabaseAdapters.SqlServer</PackageId>
<PackageIcon>Resources\icon.png</PackageIcon>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
<PackageProjectUrl>https://github.com/rent-a-developer/DbConnectionPlus</PackageProjectUrl>
Expand All @@ -31,7 +32,7 @@
<TieredCompilation>true</TieredCompilation>
<TieredPGO>true</TieredPGO>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<Version>2.0.0</Version>
<Version>3.0.0</Version>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
<IncludeSymbols>true</IncludeSymbols>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<PackageId>DbConnectionPlus.DatabaseAdapters.Sqlite</PackageId>
<PackageIcon>Resources\icon.png</PackageIcon>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
<PackageProjectUrl>https://github.com/rent-a-developer/DbConnectionPlus</PackageProjectUrl>
Expand All @@ -31,7 +32,7 @@
<TieredCompilation>true</TieredCompilation>
<TieredPGO>true</TieredPGO>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<Version>2.0.0</Version>
<Version>3.0.0</Version>
</PropertyGroup>

<ItemGroup>
Expand Down
3 changes: 2 additions & 1 deletion src/DbConnectionPlus/DbConnectionPlus.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
<IncludeSymbols>true</IncludeSymbols>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<PackageId>DbConnectionPlus</PackageId>
<PackageIcon>Resources\icon.png</PackageIcon>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
<PackageProjectUrl>https://github.com/rent-a-developer/DbConnectionPlus</PackageProjectUrl>
Expand All @@ -32,7 +33,7 @@
<TieredCompilation>true</TieredCompilation>
<TieredPGO>true</TieredPGO>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<Version>2.0.0</Version>
<Version>3.0.0</Version>
</PropertyGroup>

<ItemGroup>
Expand Down
Loading