EaCloud.EntityFrameworkCore.SqlServer 6.0.1.2

There is a newer version of this package available.
See the version list below for details.
dotnet add package EaCloud.EntityFrameworkCore.SqlServer --version 6.0.1.2
                    
NuGet\Install-Package EaCloud.EntityFrameworkCore.SqlServer -Version 6.0.1.2
                    
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="EaCloud.EntityFrameworkCore.SqlServer" Version="6.0.1.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="EaCloud.EntityFrameworkCore.SqlServer" Version="6.0.1.2" />
                    
Directory.Packages.props
<PackageReference Include="EaCloud.EntityFrameworkCore.SqlServer" />
                    
Project file
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 EaCloud.EntityFrameworkCore.SqlServer --version 6.0.1.2
                    
#r "nuget: EaCloud.EntityFrameworkCore.SqlServer, 6.0.1.2"
                    
#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.
#addin nuget:?package=EaCloud.EntityFrameworkCore.SqlServer&version=6.0.1.2
                    
Install EaCloud.EntityFrameworkCore.SqlServer as a Cake Addin
#tool nuget:?package=EaCloud.EntityFrameworkCore.SqlServer&version=6.0.1.2
                    
Install EaCloud.EntityFrameworkCore.SqlServer as a Cake Tool

EaCloud SqlServer 数据库组件

说明

  1. EaCloud SqlServer 数据库组件,封装基于 Microsoft.EntityFrameworkCore.SqlServer 的数据访问功能的实现。
  2. 支持 SQL Server 2012 以上版本。

用法

可按照如下配置方式使用:

  1. 通过nuget引用 EaCloud.EntityFrameworkCore.SqlServer 程序集

Install-Package EaCloud.EntityFrameworkCore.SqlServer 2. 在 appsettings.json 中添加如下配置节点

{
    //数据库上下文
    "DbContexts": {
      //数据库类型节点:"Cosmos":{},"MySql":{},"Oracle":{},"PostgreSql":{},"Sqlite":{},"SqlServer":{}
      "SqlServer": {
        "DbContextTypeName": "EaCloud.Entity.DefaultDbContext,EaCloud.EntityFrameworkCore", //上下文类型全名(此项不需要调整)
        "DatabaseType": "SqlServer", //数据库类型:"Cosmos"、"MySql"、"Oracle"、"PostgreSql"、"Sqlite"、"SqlServer"
        "DatabaseName": "EaCloud_DEV", //数据库名
        "ConnectionString": "Data Source=IP地址;Initial Catalog=数据库名;User ID=数据库身份验证ID;Password=密码;Pooling=true(是否汇入连接池);Min Pool Size=1(最小连接池连接数);Max Pool Size=20(最大连接数);Integrated Security=true(false:用户名密码验证、true:windows身份验证);Multiple Active Result Sets=true(是否允许保留多活动结果集(MARS));Connect Timeout=60(连接超时时长(秒));Application Name=应用程序名称",  //连接字符串(SqlServer)
        //从数据库配置
        "SlaveDatabase": {
          "SlaveSelector": "Weight", //从数据库选择策略:Weight(平滑权重)、Random(随机)、Sequence(顺序轮询)
          //从数据库集合
          "SlaveDatabases": [
            {
              "Name": "EaCloud_DEV_Slave01", //数据库名
              "Weight": 2, //权重(1-100)
              "ConnectionString": "Data Source=IP地址;Initial Catalog=数据库名;User ID=数据库身份验证ID;Password=密码;Pooling=true(是否汇入连接池);Min Pool Size=1(最小连接池连接数);Max Pool Size=20(最大连接数);Integrated Security=true(false:用户名密码验证、true:windows身份验证);Multiple Active Result Sets=true(是否允许保留多活动结果集(MARS));Connect Timeout=60(连接超时时长(秒));Application Name=应用程序名称",  //连接字符串(SqlServer)
            },
            {
              "Name": "EaCloud_DEV_Slave02", //数据库名
              "Weight": 5, //权重(1-100)
              "ConnectionString": "Data Source=IP地址;Initial Catalog=数据库名;User ID=数据库身份验证ID;Password=密码;Pooling=true(是否汇入连接池);Min Pool Size=1(最小连接池连接数);Max Pool Size=20(最大连接数);Integrated Security=true(false:用户名密码验证、true:windows身份验证);Multiple Active Result Sets=true(是否允许保留多活动结果集(MARS));Connect Timeout=60(连接超时时长(秒));Application Name=应用程序名称",  //连接字符串(SqlServer)
            }
          ]
        },
        "LazyLoadingProxiesEnabled": true, //是否启用延迟加载代理
        "DateTimeUtcFormatEnabled": false, //是否启用时间UTC格式
        "AuditEntityEnabled": true, //是否允许审计实体
        "AutoMigrationEnabled": true //是否自动迁移
      }
    },
}
Product Compatible and additional computed target framework versions.
.NET 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 was computed.  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 was computed.  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 was computed.  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. 
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 EaCloud.EntityFrameworkCore.SqlServer:

Package Downloads
EaCloud.EntityFrameworkCore.Allinone

EaCloud 一体化数据访问组件,封装 Cosmos(Azure Cosmos DB 的 SQL API)、Kdbndp(人大金仓)、MySql、Oracle、PostgreSql、SAP HANA、Sqlite、SqlServer 等类型数据访问功能的实现。

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
9.0.0.4 68 5/8/2025
9.0.0.3 159 4/23/2025
9.0.0.2 171 4/11/2025
9.0.0.1 153 3/21/2025
8.0.1.9 150 11/15/2024
8.0.1.8 138 11/13/2024
8.0.1.7 153 10/9/2024
8.0.1.6 142 9/29/2024
8.0.1.5 140 9/13/2024
8.0.1.4 174 8/10/2024
8.0.1.3 152 8/7/2024
8.0.1.2 147 8/7/2024
8.0.1.1 155 8/7/2024
8.0.0.9 157 8/7/2024
8.0.0.8 104 8/5/2024
8.0.0.7 110 8/2/2024
8.0.0.6 120 8/1/2024
8.0.0.5 119 8/1/2024
8.0.0.4 104 7/31/2024
8.0.0.3 120 7/30/2024
8.0.0.2 143 7/25/2024
8.0.0.1 119 7/24/2024
7.0.9.4 164 7/19/2024
7.0.9.3 140 7/11/2024
7.0.9.2 137 7/6/2024
7.0.9.1 128 7/3/2024
7.0.8.9 140 6/28/2024
7.0.8.8 142 6/26/2024
7.0.8.7 145 6/22/2024
7.0.8.6 141 6/14/2024
7.0.8.5 153 5/31/2024
7.0.8.4 152 5/21/2024
7.0.8.3 137 5/21/2024
7.0.8.2 126 5/20/2024
7.0.8.1 141 5/20/2024
7.0.7.9 136 5/15/2024
7.0.7.8 139 5/10/2024
7.0.7.7 133 5/9/2024
7.0.7.6 134 5/9/2024
7.0.7.5 147 5/7/2024
7.0.7.4 137 4/28/2024
7.0.7.3 144 4/26/2024
7.0.7.2 147 4/21/2024
7.0.7.1 145 4/19/2024
7.0.6.9 151 4/15/2024
7.0.6.8 127 4/11/2024
7.0.6.7 150 4/11/2024
7.0.6.6 139 4/7/2024
7.0.6.5 138 4/7/2024
7.0.6.4 152 4/7/2024
7.0.6.3 138 4/7/2024
7.0.6.2 149 4/3/2024
7.0.6.1 146 4/3/2024
7.0.5.9 150 3/27/2024
7.0.5.8 132 3/23/2024
7.0.5.7 171 3/17/2024
7.0.5.6 148 3/17/2024
7.0.5.5 149 3/16/2024
7.0.5.4 146 3/13/2024
7.0.5.3 146 3/13/2024
7.0.5.2 168 3/6/2024
7.0.5.1 149 2/21/2024
7.0.4.9 149 2/21/2024
7.0.4.8 153 2/18/2024
7.0.4.7 159 2/5/2024
7.0.4.6 149 2/1/2024
7.0.4.5 147 1/26/2024
7.0.4.4 147 1/22/2024
7.0.4.3 164 1/17/2024
7.0.4.2 161 1/16/2024
7.0.4.1 139 1/16/2024
7.0.3.9 137 1/15/2024
7.0.3.8 178 1/3/2024
7.0.3.7 155 12/28/2023
7.0.3.6 142 12/27/2023
7.0.3.5 173 12/22/2023
7.0.3.4 156 12/22/2023
7.0.3.3 175 12/13/2023
7.0.3.2 140 12/13/2023
7.0.3.1 169 12/12/2023
7.0.2.9 163 11/26/2023
7.0.2.8 148 11/26/2023
7.0.2.7 175 9/26/2023
7.0.2.6 159 9/25/2023
7.0.2.5 169 9/15/2023
7.0.2.4 158 7/27/2023
7.0.2.3 182 7/22/2023
7.0.2.2 189 7/22/2023
7.0.2.1 200 7/21/2023
7.0.1.9 184 7/21/2023
7.0.1.8 178 7/20/2023
7.0.1.7 183 7/20/2023
7.0.1.6 199 7/4/2023
7.0.1.5 171 6/16/2023
7.0.1.4 166 6/13/2023
7.0.1.3 164 6/8/2023
7.0.1.2 158 6/2/2023
7.0.1.1 181 5/11/2023
7.0.0.9 160 5/10/2023
7.0.0.8 166 5/10/2023
7.0.0.7 230 4/19/2023
7.0.0.6 194 4/18/2023
7.0.0.5 250 3/27/2023
7.0.0.4 231 3/23/2023
7.0.0.3 295 1/31/2023
7.0.0.2 286 1/30/2023
7.0.0.1 300 12/24/2022
6.0.2.5 344 11/16/2022
6.0.2.4 361 11/10/2022
6.0.2.3 408 10/11/2022
6.0.2.2 485 9/23/2022
6.0.2.1 500 8/14/2022
6.0.1.9 499 8/13/2022
6.0.1.8 509 6/6/2022
6.0.1.7 534 5/26/2022
6.0.1.6 559 5/11/2022
6.0.1.5 519 5/10/2022
6.0.1.4 561 4/8/2022
6.0.1.3 555 4/2/2022
6.0.1.2 565 4/2/2022
6.0.1.1 579 3/18/2022
6.0.0.9 574 3/5/2022
6.0.0.8 583 2/19/2022
6.0.0.7 585 2/15/2022
6.0.0.6 588 2/14/2022
6.0.0.5 618 1/28/2022
6.0.0.4 505 1/13/2022
6.0.0.3 494 1/12/2022
6.0.0.2 335 12/21/2021
6.0.0.1 343 12/13/2021
5.0.3.7 505 10/16/2021
5.0.3.6 438 10/14/2021
5.0.3.5 410 10/13/2021
5.0.3.4 445 10/8/2021
5.0.3.3 424 9/17/2021
5.0.3.2 465 9/16/2021
5.0.3.1 414 9/15/2021
5.0.2.9 463 9/15/2021
5.0.2.8 431 8/31/2021
5.0.2.7 443 8/28/2021
5.0.2.6 422 8/22/2021
5.0.2.5 420 8/13/2021
5.0.2.4 365 8/13/2021
5.0.2.3 475 7/8/2021
5.0.2.2 428 7/1/2021
5.0.2.1 514 6/16/2021
5.0.1.9 418 5/12/2021
5.0.1.8 427 5/9/2021
5.0.1.7 465 5/7/2021
5.0.1.6 467 4/17/2021
5.0.1.5 402 4/16/2021
5.0.1.4 471 4/15/2021
5.0.1.3 408 4/15/2021
5.0.1.2 447 4/12/2021