OrangeCloud.Core 3.2.8.9

There is a newer version of this package available.
See the version list below for details.
dotnet add package OrangeCloud.Core --version 3.2.8.9                
NuGet\Install-Package OrangeCloud.Core -Version 3.2.8.9                
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="OrangeCloud.Core" Version="3.2.8.9" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add OrangeCloud.Core --version 3.2.8.9                
#r "nuget: OrangeCloud.Core, 3.2.8.9"                
#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 OrangeCloud.Core as a Cake Addin
#addin nuget:?package=OrangeCloud.Core&version=3.2.8.9

// Install OrangeCloud.Core as a Cake Tool
#tool nuget:?package=OrangeCloud.Core&version=3.2.8.9                

OrangeCloud.Core

OrangeCloud.Core 是一个基于 dapper 的 ORM

功能介绍

  1. 支持批量生成数据表实体类
运行:go.aspx
  1. 支持分表插入
ORM.Build<T>()
.Insert(model, true)
.SetSplitTable(new MSplitTableConfig { Type = ESplitTableType.DateTime, DateTimeConfig = "yyyyMM" })
.Execute();
  1. 支持读写分离
// 读库:
<add key="FSystemRead" value="server=192.168.1.101,192.168.1.102,192.168.1.103;database=FSystem;uid=sa;pwd=123456"/>

// 写库:
<add key="FSystemWrite" value="server=192.168.1.100;database=FSystem;uid=sa;pwd=123456"/>
  1. 支持 BulkCopy
// 数据类型:DataTable
ORM.Build<T>().BulkCopy(dataTable);

// 数据类型:List<T>
// 参数 2:指定插入的列
ORM.Build<T>().BulkCopy(listData, o => new { o.col1, o.col2 });
  1. 支持动态查询写法(根据参数自动拼接条件)
// 可访问菜单:按条件查询
https://www.107000.com/T-Doc/7
  1. 支持简便的分页查询
ORM.Build<T>()
.Get(it => it.Where(o => o.Mark > 0).OrderBy(o => o.CreateDate))
.ToPageList(1, 30);
  1. 支持简便的事务处理
using(var trans = ORM.TransMaster())
{
    --插入数据并获得ID
    var id = ORM.Insert(model, true);
    --修改数据
    ORM.Update(model);
    --提交事务
    trans.Complete();
}

如何使用

  1. 单独创建 Entity 层,在 Entity 层引用 OrangeCloud.Core.dll
  2. 配置项目 config 文件
{

  "ConfigType": "Production",

  "OrangeCloud.Core.DataTable.Type": "SqlServer", //数据库类型:(SqlServer;MySql;)

  "OrangeCloud.Core.DatabaseKey.Prefix": "", //数据库Key前缀

  "OrangeCloud.Core.DatabaseKey.Suffix": "", //数据库Key后缀

  "OrangeCloud.Core.DatabaseConfig.Encryption": false, //数据库Config.Value是否加密 true,false

  "OrangeCloud.Core.FillEntity": "OrangeCloud.CoreEntity,OrangeCloud.CoreEntity,FillEntity", //填充系统字段映射的实现类

  "OrangeCloud.Core.IsDebug": false, //是否是调试(true=调试模式:忽略菜单权限, false=正式环境)

  "OrangeCloud.Log.IsSave": false, //是否输出SQL语句

  "OrangeCloud.Log.SavePath": "E:\\Log\\", //输出路径

  "OrangeCloud.Cookie.Login": "OrangeCloudOMS", //单点登录Cookie Name

  "OrangeCloud.Cache.ServerList": "127.0.0.1:10600", //分布式缓存服务器:OCache

  "OrangeCloud.Redis.ServerList": "127.0.0.1:6379", //分布式缓存服务器:Redis

  "OrangeCloud.Upload.ServerList": "127.0.0.1:10300", //分布式上传服务器

  "OrangeCloud.Upload.FileUrl": "https://cdn.xxx.com/", //分布式文件查看地址

  // 写库
  "DBWrite": "server=127.0.0.1\\SQL2016,1433;database=DB;uid=sa;pwd=123456;",

  // 读库
  "DBRead": "server=127.0.0.1\\SQL2016,1433;database=DB;uid=sa;pwd=123456;"

}

作者

樊嵘

教程

https://www.107000.com/T-Doc/1

更新日志

https://www.107000.com/T-Doc/2085

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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. 
.NET Core netcoreapp3.1 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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.2.9.5 78 11/16/2024
3.2.9.3 106 9/24/2024
3.2.9.2 80 9/24/2024
3.2.9.1 84 9/24/2024
3.2.9 80 9/24/2024
3.2.8.9 80 9/24/2024
3.2.8.8 88 9/23/2024
3.2.8.7 77 9/23/2024
3.2.8.6 114 9/17/2024
3.2.8.5 64 8/3/2024
3.2.8.3 72 8/3/2024
3.2.8.2 64 7/29/2024
3.2.8.1 103 7/12/2024
3.2.8 97 7/4/2024
3.2.7.9 88 6/25/2024
3.2.7.8 78 6/25/2024
3.2.7.7 95 6/3/2024
3.2.7.6 79 6/2/2024
3.2.7.5 119 5/7/2024
3.2.7.3 113 4/29/2024
3.2.7.2 110 4/29/2024
3.2.7.1 103 3/25/2024
3.2.7 103 3/23/2024
3.2.6.9 137 1/30/2024
3.2.6.8 129 1/10/2024
3.2.6.7 172 12/7/2023
3.2.6.6 112 12/7/2023
3.2.6.5 146 12/3/2023
3.2.6.3 133 11/13/2023
3.2.6.2 108 11/8/2023
3.2.6.1 126 11/6/2023
3.2.6 132 11/5/2023
3.2.5.2 132 10/21/2023
3.2.5.1 177 8/16/2023
3.2.3.9 214 3/14/2023
3.2.3.8 354 11/22/2022
3.2.3.6 327 11/22/2022
3.2.3.5 320 11/22/2022
3.2.3.3 350 11/15/2022
3.2.3.2 374 11/9/2022
3.2.3.1 361 11/9/2022
3.2.3 355 11/9/2022
3.2.2.9 356 11/8/2022
3.2.2.8 362 11/8/2022
3.2.2.6 350 11/7/2022
3.2.2.5 380 11/3/2022
3.2.2.3 395 11/3/2022
3.2.2.2 370 11/3/2022
3.2.2.1 391 11/3/2022
3.2.2 372 11/3/2022
3.2.1.9 361 11/3/2022
3.2.1.8 362 11/3/2022
3.2.1.6 398 11/1/2022
3.2.1.5 408 10/28/2022
3.2.1.3 410 10/27/2022
3.2.1.2 421 10/27/2022
3.2.1.1 390 10/26/2022
3.2.1 412 10/26/2022
3.2.0.9 405 10/26/2022
3.2.0.8 408 10/24/2022
3.2.0.7 403 10/24/2022
3.2.0.6 430 10/24/2022
3.2.0.5 427 10/24/2022
3.2.0.3 442 10/21/2022
3.2.0.2 436 10/12/2022
3.2.0.1 438 10/11/2022
3.2.0 446 10/8/2022
3.1.1.1 484 9/21/2022
3.1.1 568 6/21/2022
3.1.0.8 710 1/21/2022
3.1.0.7 674 1/21/2022
3.1.0.6 698 1/18/2022
3.1.0.5 538 1/12/2022
3.1.0.3 679 7/28/2020
3.1.0.2 615 7/28/2020
3.1.0.1 716 2/26/2020
2.2.1.6 651 10/18/2019
2.2.1.5 581 10/18/2019
2.2.1.3 592 10/17/2019
2.2.1.2 725 12/26/2018
2.2.1.1 756 12/18/2018
2.2.1 984 4/18/2018
2.2.0.9 964 4/18/2018
2.2.0.8 1,102 2/7/2017
2.2.0.6 983 2/7/2017
2.2.0.3 1,013 12/22/2016
2.2.0.2 1,006 12/22/2016
2.2.0.1 1,088 11/23/2016
2.2.0 1,034 11/22/2016
2.1.0 1,007 11/14/2016
2.0.8.3 1,123 11/13/2016
2.0.8.2 1,023 9/28/2016
2.0.8.1 996 9/8/2016
2.0.7.10 996 9/7/2016
2.0.7.9 1,079 9/7/2016
2.0.7.8 980 9/7/2016
2.0.7.7 971 9/7/2016
2.0.7.6 979 9/2/2016
2.0.7.5 1,008 9/1/2016
2.0.7.3 1,008 8/31/2016
2.0.7.2 1,018 8/29/2016
2.0.7.1 1,005 8/29/2016
2.0.6.36 980 8/27/2016
2.0.6.32 983 8/27/2016
2.0.6.28 1,049 8/27/2016
2.0.6.26 1,033 8/27/2016
2.0.6.22 1,030 8/18/2016
2.0.6.20 978 8/18/2016
2.0.6.16 1,011 8/18/2016
2.0.6.13 986 8/18/2016
2.0.6.11 995 8/17/2016
2.0.6.9 1,015 7/7/2016
2.0.6.6 1,282 6/15/2016
2.0.6.5 991 6/7/2016
2.0.6.3 1,248 6/7/2016
2.0.6.2 997 6/7/2016
2.0.6 1,032 4/10/2016