Acme.EFCore.Small
1.2.8.3
.NET 5.0
This package targets .NET 5.0. The package is compatible with this framework or higher.
.NET Core 3.1
This package targets .NET Core 3.1. The package is compatible with this framework or higher.
dotnet add package Acme.EFCore.Small --version 1.2.8.3
NuGet\Install-Package Acme.EFCore.Small -Version 1.2.8.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="Acme.EFCore.Small" Version="1.2.8.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Acme.EFCore.Small --version 1.2.8.3
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Acme.EFCore.Small, 1.2.8.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 Acme.EFCore.Small as a Cake Addin #addin nuget:?package=Acme.EFCore.Small&version=1.2.8.3 // Install Acme.EFCore.Small as a Cake Tool #tool nuget:?package=Acme.EFCore.Small&version=1.2.8.3
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Acme.EFCore.Small
1、summary
Acme.EFCore.Small is a lightweight EFCore general-purpose library designed to interact with databases using Entity Framework Core (EFCore). It serves as the fundamental component for handling various database operations. Version: v1.2.7.2
2、 Beginner's Guide
1. Install Acme EFCore.Small
Create Project →Click on References →Right click →Manage Nuget Packages →Search Acme EFCore. Small selects version 1.2.7 and above Simply install the NET version.
2. Install the corresponding database package
- SqlServer:
Microsoft.EntityFrameworkCore.SqlServer
- Sqlite:
Microsoft.EntityFrameworkCore.Sqlite
- Cosmos:
Microsoft.EntityFrameworkCore.Cosmos
- InMemoryDatabase:
Microsoft.EntityFrameworkCore.InMemory
- MySql:
Pomelo.EntityFrameworkCore.MySql
MySql.EntityFrameworkCore
- PostgreSQL:
Npgsql.EntityFrameworkCore.PostgreSQL
- Oracle:
Oracle.EntityFrameworkCore
- Firebird:
FirebirdSql.EntityFrameworkCore.Firebird
- Dm:
Microsoft.EntityFrameworkCore.Dm
4.Create VNet database context class
public class AppDbContext : DbContext
{
/// <summary>
/// Initialize database context
/// </summary>
/// <param name="options"></param>
public AppDbContext(DbContextOptions<AppDbContext> options) :
base(options)
{
}
}
5.Configure connection string
{
"ConnectionStrings":{
"DefaultConnection": "Persist Security Info=False;Data Source=.;Initial Catalog=Database Name;User ID=user;Password=password;Connect Timeout=120;Encrypt=False;"
}
}
6.Dependency injection
6.1.Basic configuration
//调用数据库配置信息
services.AddDbContext<AppDbContext1>(options => options.UseSqlServer(Configuration.GetConnectionString("DefaultConnection")));
services.AddBaseService();
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 is compatible. net5.0-windows was computed. net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 is compatible. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. 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. net9.0 is compatible. |
.NET Core | netcoreapp3.1 is compatible. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETCoreApp 3.1
- Microsoft.EntityFrameworkCore (>= 3.1.32)
-
net5.0
- Microsoft.EntityFrameworkCore (>= 5.0.17)
-
net6.0
- Microsoft.EntityFrameworkCore (>= 7.0.20)
-
net7.0
- Microsoft.EntityFrameworkCore (>= 7.0.20)
-
net8.0
- Microsoft.EntityFrameworkCore (>= 9.0.0)
-
net9.0
- Microsoft.EntityFrameworkCore (>= 9.0.0)
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 |
---|---|---|
1.2.8.3 | 33 | 12/25/2024 |
1.2.8.3-alpha | 31 | 12/25/2024 |
1.2.8.2 | 79 | 12/20/2024 |
1.2.8.1 | 71 | 12/19/2024 |
1.2.8 | 93 | 11/13/2024 |
1.2.7.2 | 100 | 11/7/2024 |
1.2.7.1 | 100 | 10/11/2024 |
1.2.7.1-alpha | 61 | 9/20/2024 |
1.2.7 | 94 | 10/11/2024 |
1.2.7-alpha | 76 | 9/20/2024 |
1.2.6 | 109 | 9/14/2024 |
1.2.5.9 | 124 | 8/9/2024 |
1.2.5.8 | 121 | 8/9/2024 |
1.2.5.7 | 112 | 7/19/2024 |
1.2.5.6 | 105 | 6/3/2024 |
1.2.5.6-rc | 95 | 5/30/2024 |
1.2.5.6-alpha | 109 | 5/29/2024 |
1.2.5.5 | 95 | 6/3/2024 |
1.2.5.5-alpha | 101 | 5/29/2024 |
1.2.5.4 | 113 | 5/29/2024 |
1.2.5.3 | 104 | 5/29/2024 |
1.2.5.2 | 116 | 5/11/2024 |
1.2.5.1 | 137 | 4/22/2024 |
1.2.5 | 123 | 4/22/2024 |
1.2.4.9 | 127 | 4/22/2024 |
1.2.4.8 | 117 | 4/19/2024 |
1.2.4.7 | 120 | 4/11/2024 |
1.2.4.6 | 120 | 4/10/2024 |
1.2.4.5 | 115 | 4/10/2024 |
1.2.4.4 | 117 | 4/9/2024 |
1.2.4.3 | 117 | 4/9/2024 |
1.2.4.2 | 116 | 4/8/2024 |
1.2.4.1 | 128 | 4/7/2024 |
1.2.3.9 | 117 | 4/7/2024 |
1.2.3.8 | 124 | 4/8/2024 |
1.2.3.7 | 112 | 4/9/2024 |
1.2.3.6 | 105 | 4/9/2024 |
1.2.3.5 | 119 | 4/8/2024 |
1.2.3.4 | 118 | 4/8/2024 |
1.2.3.3 | 123 | 4/8/2024 |
1.2.3.2 | 123 | 4/7/2024 |
1.2.3.1 | 127 | 4/7/2024 |
1.2.3 | 125 | 4/7/2024 |
1.2.2.9 | 122 | 4/7/2024 |
1.2.2.8 | 125 | 4/7/2024 |
1.2.2.7 | 118 | 4/7/2024 |
1.2.2.6 | 132 | 4/2/2024 |
1.2.2.5 | 125 | 4/2/2024 |
1.2.2.4 | 128 | 3/29/2024 |
1.2.2.3 | 130 | 3/29/2024 |
1.2.2.2 | 121 | 3/27/2024 |
1.2.2.1 | 136 | 3/27/2024 |
1.2.1 | 121 | 3/27/2024 |
1.2.0.9 | 129 | 3/26/2024 |
1.2.0.8 | 134 | 3/26/2024 |
1.2.0.7 | 122 | 3/26/2024 |
1.2.0.6 | 142 | 3/26/2024 |
1.2.0.5 | 129 | 3/26/2024 |
1.2.0.4 | 132 | 3/25/2024 |
1.2.0.3 | 126 | 3/25/2024 |
1.2.0.2 | 129 | 3/25/2024 |
1.2.0.1 | 132 | 3/20/2024 |
1.1.0.5 | 126 | 3/25/2024 |
1.1.0.1 | 140 | 3/20/2024 |
1.0.5 | 77 | 12/20/2024 |
1.0.4 | 74 | 12/19/2024 |
1.0.3.9 | 116 | 4/19/2024 |
1.0.3.8 | 114 | 4/19/2024 |
1.0.3.7 | 118 | 4/19/2024 |
1.0.3.6 | 117 | 4/19/2024 |
1.0.3.5 | 143 | 4/7/2024 |
1.0.3.4 | 137 | 4/7/2024 |
1.0.3.3 | 128 | 4/2/2024 |
1.0.3.2 | 137 | 4/2/2024 |
1.0.3.1 | 128 | 3/31/2024 |
1.0.0.1 | 134 | 3/20/2024 |
合并core3.1;net5;到最新版本