Acme.EFCore
3.3.7
Suggested Alternatives
Additional Details
You must add a custom message if Other is selected.
There is a newer prerelease version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package Acme.EFCore --version 3.3.7
NuGet\Install-Package Acme.EFCore -Version 3.3.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="Acme.EFCore" Version="3.3.7" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Acme.EFCore" Version="3.3.7" />
<PackageReference Include="Acme.EFCore" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Acme.EFCore --version 3.3.7
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Acme.EFCore, 3.3.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.
#:package Acme.EFCore@3.3.7
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Acme.EFCore&version=3.3.7
#tool nuget:?package=Acme.EFCore&version=3.3.7
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Acme.EFCore
1、summary
Acme.EFCore 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: v3.3.6
2、 Beginner's Guide
2.1. Install Acme EFCore
Create Project →Click on References →Right click →Manage Nuget Packages →Search Acme EFCore selects version 3.0.0.3-alpha and above Simply install the NET version.
2.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.MySqlMySql.EntityFrameworkCore
- PostgreSQL:
Npgsql.EntityFrameworkCore.PostgreSQL - Oracle:
Oracle.EntityFrameworkCore - Firebird:
FirebirdSql.EntityFrameworkCore.Firebird - Dm:
Microsoft.EntityFrameworkCore.Dm
2.3.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)
{
}
}
2.3.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;"
}
}
2.5 Dependency injection
2.6.1.Basic configuration
//Call database configuration information
services.AddDbContext<AppDbContext1>(options => options.UseSqlServer(Configuration.GetConnectionString("DefaultConnection")));
| Product | Versions 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. net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net8.0
- Microsoft.EntityFrameworkCore (>= 9.0.4)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 9.0.4)
-
net9.0
- Microsoft.EntityFrameworkCore (>= 9.0.4)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 9.0.4)
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 | |
|---|---|---|---|
| 3.3.8-beta | 436 | 5/20/2025 | |
| 3.3.7 | 437 | 5/20/2025 | |
| 3.3.6 | 391 | 5/9/2025 | |
| 3.3.5 | 414 | 3/27/2025 | |
| 3.3.4 | 389 | 2/22/2025 | |
| 3.3.2 | 383 | 2/7/2025 | |
| 3.3.1 | 404 | 1/21/2025 | |
| 3.3.0 | 384 | 12/23/2024 | |
| 3.2.0 | 400 | 12/18/2024 | |
| 3.1.0 | 389 | 12/16/2024 | |
| 3.0.9 | 397 | 12/5/2024 | |
| 3.0.8 | 439 | 11/13/2024 | |
| 3.0.0.3-alpha | 382 | 11/12/2024 | |
| 3.0.0.2-alpha | 400 | 11/11/2024 | |
| 3.0.0.1-alpha | 378 | 11/11/2024 | |
| 2.1.0.2 | 560 | 3/19/2024 | |
| 2.1.0.1 | 485 | 3/15/2024 | |
| 2.0.2.5 | 504 | 2/29/2024 | |
| 2.0.2.4 | 506 | 2/26/2024 | |
| 2.0.2.3 | 508 | 2/7/2024 |
Loading failed
A brand new version of Acme EFCore