Aiursoft.DbTools 8.0.3

dotnet add package Aiursoft.DbTools --version 8.0.3
NuGet\Install-Package Aiursoft.DbTools -Version 8.0.3
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Aiursoft.DbTools" Version="8.0.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Aiursoft.DbTools --version 8.0.3
#r "nuget: Aiursoft.DbTools, 8.0.3"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Aiursoft.DbTools as a Cake Addin
#addin nuget:?package=Aiursoft.DbTools&version=8.0.3

// Install Aiursoft.DbTools as a Cake Tool
#tool nuget:?package=Aiursoft.DbTools&version=8.0.3

DBTools

MIT licensed Pipeline stat Test Coverage NuGet version (Aiursoft.CSTools) ManHours

DbTools are Aiursoft's common database tools. It contains a lot of useful database tools for developers.

Installation

To install Aiursoft.DbTools to your project from nuget.org:

dotnet add package Aiursoft.DbTools

Usage

Easier to register DbContext:

SQLite

var services = new ServiceCollection();
services.AddAiurSqliteWithCache<MyDbContext>("Data Source=app.db");

var built = services.BuildServiceProvider();
var context = built.GetRequiredService<MyDbContext>();

SQL Server

var services = new ServiceCollection();
services.AddAiurSqlServerWithCache<MyDbContext>("Server=(localdb)\\mssqllocaldb;Database=DebugTrusted_Connection=True;MultipleActiveResultSets=true");

var built = services.BuildServiceProvider();
var context = built.GetRequiredService<MyDbContext>();

Easier to update database:

var hostBuilder = Host.CreateDefaultBuilder();
hostBuilder.ConfigureServices(services => 
    services.AddAiurSqliteWithCache<MyDbContext>(@"DataSource=app.db;Cache=Shared")
);
var host = hostBuilder.Build();

// Now update:
await host.UpdateDbAsync<MyDbContext>(UpdateMode.CreateThenUse);

How to contribute

There are many ways to contribute to the project: logging bugs, submitting pull requests, reporting issues, and creating suggestions.

Even if you with push rights on the repository, you should create a personal fork and create feature branches there when you need them. This keeps the main repository clean and your workflow cruft out of sight.

We're also interested in your feedback on the future of this project. You can submit a suggestion or feature request through the issue tracker. To make this process more effective, we're asking that these include more information to help define them more clearly.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (4)

Showing the top 4 NuGet packages that depend on Aiursoft.DbTools:

Package Downloads
Aiursoft.DbTools.SqlServer

A tool for database.

Aiursoft.DbTools.InMemory

A tool for database.

Aiursoft.DbTools.MySql

A tool for database.

Aiursoft.DbTools.Sqlite

A tool for database.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
8.0.3 205 3/17/2024
8.0.2 129 3/17/2024
8.0.1 215 2/25/2024
8.0.0 291 2/19/2024
7.0.19 265 2/14/2024
7.0.18 240 2/4/2024
7.0.17 240 2/2/2024
7.0.16 266 2/2/2024
7.0.15 247 1/30/2024
7.0.14 424 1/10/2024
7.0.13 366 1/4/2024
7.0.12 705 12/30/2023
7.0.11 371 12/24/2023
7.0.10 515 12/1/2023
7.0.9 550 11/26/2023
7.0.8 581 11/18/2023
7.0.7 452 11/12/2023
7.0.6 520 11/2/2023
7.0.5 418 11/2/2023
7.0.4 492 10/31/2023
7.0.3 431 10/27/2023
7.0.2 563 10/11/2023
7.0.1 698 9/13/2023
7.0.0 619 9/5/2023
6.0.32 590 8/4/2023
6.0.31 628 8/3/2023
6.0.30 603 7/11/2023
6.0.29 803 6/30/2023
6.0.28 679 6/29/2023
6.0.27 552 6/29/2023
6.0.26 599 6/29/2023
6.0.25 532 6/29/2023
6.0.24 630 6/28/2023
6.0.23 630 6/28/2023
6.0.22 804 6/18/2023
6.0.21 770 6/14/2023
6.0.20 746 6/5/2023
6.0.19 796 5/27/2023
6.0.18 744 5/27/2023
6.0.17 770 5/27/2023
6.0.16 727 5/27/2023
6.0.15 733 5/27/2023
6.0.14 735 5/27/2023
6.0.13 756 5/19/2023
6.0.12 768 5/19/2023
6.0.11 765 5/19/2023
6.0.10 776 5/19/2023
6.0.9 719 5/19/2023
6.0.8 764 5/11/2023
6.0.7 2,792 8/4/2022
6.0.6 1,347 7/6/2022
6.0.5 1,614 5/13/2022
6.0.0 1,429 3/27/2022
5.0.9 1,409 5/31/2021
5.0.8 1,273 5/23/2021
5.0.7 1,292 5/7/2021
5.0.6 1,336 4/14/2021
5.0.5 1,415 2/16/2021
5.0.4 1,399 1/29/2021
5.0.3 1,384 1/27/2021
5.0.2 1,472 12/9/2020
5.0.1 1,392 11/30/2020
5.0.0 1,304 11/14/2020
3.2.11 1,577 10/18/2020
3.2.10 1,477 10/3/2020
3.2.9 1,442 10/2/2020
3.2.8 1,497 9/10/2020
3.2.7 1,489 9/2/2020
3.2.6 1,541 8/12/2020
3.2.5 1,566 7/31/2020
3.2.4 1,586 7/3/2020
3.2.3 1,494 6/25/2020
3.2.2 1,520 6/18/2020
3.2.1 1,494 6/5/2020
3.2.0 1,591 6/4/2020
3.1.14 1,687 6/4/2020
3.1.13 1,696 5/25/2020
3.1.12 1,587 5/20/2020
3.1.11 1,568 5/18/2020
3.1.10 1,611 5/18/2020
3.1.9 1,564 5/17/2020
3.1.8 1,579 5/12/2020
3.1.7 1,639 5/2/2020
3.1.6 1,657 5/1/2020
3.1.5 1,651 4/21/2020
3.1.4 1,401 4/19/2020