Aiursoft.DbTools.SqlServer 8.0.7

dotnet add package Aiursoft.DbTools.SqlServer --version 8.0.7
NuGet\Install-Package Aiursoft.DbTools.SqlServer -Version 8.0.7
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.SqlServer" Version="8.0.7" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Aiursoft.DbTools.SqlServer --version 8.0.7
#r "nuget: Aiursoft.DbTools.SqlServer, 8.0.7"
#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.SqlServer as a Cake Addin
#addin nuget:?package=Aiursoft.DbTools.SqlServer&version=8.0.7

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

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);

Switchable database

Supports:

  • Sqlite
  • MySql
  • InMemory

First, install the package:

dotnet add package Aiursoft.DbTools.Switchable

In your appsettings.json:

{
  // Database.
  "ConnectionStrings": {
    "AllowCache": "True",
    "DbType": "Sqlite",
    "DefaultConnection": "DataSource=app.db;Cache=Shared"
  },
}

In your startup.cs:

var connectionString = configuration.GetConnectionString("DefaultConnection");
var dbType = configuration.GetSection("ConnectionStrings:DbType").Get<DbType>();
var allowCache = configuration.GetSection("ConnectionStrings:AllowCache").Get<bool>();
services.AddDatabase<MyDbContext>(connectionString, dbType, allowCache);

Tips

If your database project is different with your web project, you may need the following command to generate migrations:

cd ./DatabaseProject
dotnet ef migrations add MigrationName --context YourContext --output-dir Migrations --startup-project ../WebProject
dotnet ef database update --context YourContext

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 (1)

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

Package Downloads
Aiursoft.SDK

The base class, tools and extends for Aiursoft web apps.

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on Aiursoft.DbTools.SqlServer:

Repository Stars
AiursoftWeb/Infrastructures
Mirror of: https://gitlab.aiursoft.cn/aiursoft/infrastructures
Version Downloads Last updated
8.0.7 85 4/6/2024
8.0.6 88 3/31/2024
8.0.5 80 3/31/2024
8.0.4 67 3/17/2024
8.0.3 69 3/17/2024
8.0.2 97 3/3/2024
8.0.1 96 2/25/2024
8.0.0 136 2/19/2024
7.0.25 97 2/14/2024
7.0.24 78 2/4/2024
7.0.23 65 2/2/2024
7.0.22 64 2/2/2024
7.0.21 71 1/30/2024
7.0.20 71 1/27/2024
7.0.19 92 1/21/2024
7.0.18 101 1/10/2024
7.0.17 97 1/4/2024
7.0.16 472 12/30/2023
7.0.15 121 12/24/2023
7.0.14 119 12/12/2023
7.0.13 96 12/12/2023
7.0.12 121 12/1/2023
7.0.11 253 11/26/2023
7.0.10 258 11/18/2023
7.0.9 153 11/12/2023
7.0.8 207 11/2/2023
7.0.7 118 11/2/2023
7.0.6 134 11/1/2023
7.0.5 140 10/31/2023
7.0.4 123 10/27/2023
7.0.3 159 10/18/2023
7.0.2 184 10/11/2023
7.0.1 317 9/13/2023
7.0.0 219 9/5/2023
6.0.32 187 8/4/2023
6.0.31 152 8/3/2023
6.0.30 166 7/11/2023
6.0.29 357 6/30/2023