OrangeCloud.Core 3.2.9.3

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

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

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.3 54 9/24/2024
3.2.9.2 61 9/24/2024
3.2.9.1 65 9/24/2024
3.2.9 64 9/24/2024
3.2.8.9 63 9/24/2024
3.2.8.8 70 9/23/2024
3.2.8.7 58 9/23/2024
3.2.8.6 90 9/17/2024
3.2.8.5 56 8/3/2024
3.2.8.3 64 8/3/2024
3.2.8.2 61 7/29/2024
3.2.8.1 99 7/12/2024
3.2.8 93 7/4/2024
3.2.7.9 85 6/25/2024
3.2.7.8 74 6/25/2024
3.2.7.7 92 6/3/2024
3.2.7.6 74 6/2/2024
3.2.7.5 114 5/7/2024
3.2.7.3 107 4/29/2024
3.2.7.2 107 4/29/2024
3.2.7.1 100 3/25/2024
3.2.7 99 3/23/2024
3.2.6.9 134 1/30/2024
3.2.6.8 126 1/10/2024
3.2.6.7 169 12/7/2023
3.2.6.6 108 12/7/2023
3.2.6.5 142 12/3/2023
3.2.6.3 130 11/13/2023
3.2.6.2 102 11/8/2023
3.2.6.1 121 11/6/2023
3.2.6 128 11/5/2023
3.2.5.2 127 10/21/2023
3.2.5.1 169 8/16/2023
3.2.3.9 208 3/14/2023
3.2.3.8 349 11/22/2022
3.2.3.6 324 11/22/2022
3.2.3.5 315 11/22/2022
3.2.3.3 347 11/15/2022
3.2.3.2 369 11/9/2022
3.2.3.1 355 11/9/2022
3.2.3 352 11/9/2022
3.2.2.9 353 11/8/2022
3.2.2.8 356 11/8/2022
3.2.2.6 344 11/7/2022
3.2.2.5 375 11/3/2022
3.2.2.3 391 11/3/2022
3.2.2.2 365 11/3/2022
3.2.2.1 386 11/3/2022
3.2.2 369 11/3/2022
3.2.1.9 358 11/3/2022
3.2.1.8 359 11/3/2022
3.2.1.6 395 11/1/2022
3.2.1.5 402 10/28/2022
3.2.1.3 407 10/27/2022
3.2.1.2 416 10/27/2022
3.2.1.1 386 10/26/2022
3.2.1 407 10/26/2022
3.2.0.9 399 10/26/2022
3.2.0.8 404 10/24/2022
3.2.0.7 398 10/24/2022
3.2.0.6 427 10/24/2022
3.2.0.5 422 10/24/2022
3.2.0.3 436 10/21/2022
3.2.0.2 432 10/12/2022
3.2.0.1 432 10/11/2022
3.2.0 442 10/8/2022
3.1.1.1 481 9/21/2022
3.1.1 563 6/21/2022
3.1.0.8 707 1/21/2022
3.1.0.7 671 1/21/2022
3.1.0.6 695 1/18/2022
3.1.0.5 533 1/12/2022
3.1.0.3 665 7/28/2020
3.1.0.2 611 7/28/2020
3.1.0.1 712 2/26/2020
2.2.1.6 636 10/18/2019
2.2.1.5 577 10/18/2019
2.2.1.3 587 10/17/2019
2.2.1.2 722 12/26/2018
2.2.1.1 742 12/18/2018
2.2.1 979 4/18/2018
2.2.0.9 960 4/18/2018
2.2.0.8 1,097 2/7/2017
2.2.0.6 979 2/7/2017
2.2.0.3 1,009 12/22/2016
2.2.0.2 1,000 12/22/2016
2.2.0.1 1,082 11/23/2016
2.2.0 1,028 11/22/2016
2.1.0 1,002 11/14/2016
2.0.8.3 1,120 11/13/2016
2.0.8.2 1,017 9/28/2016
2.0.8.1 991 9/8/2016
2.0.7.10 993 9/7/2016
2.0.7.9 1,075 9/7/2016
2.0.7.8 975 9/7/2016
2.0.7.7 968 9/7/2016
2.0.7.6 976 9/2/2016
2.0.7.5 1,004 9/1/2016
2.0.7.3 1,004 8/31/2016
2.0.7.2 1,013 8/29/2016
2.0.7.1 1,000 8/29/2016
2.0.6.36 974 8/27/2016
2.0.6.32 979 8/27/2016
2.0.6.28 1,044 8/27/2016
2.0.6.26 1,030 8/27/2016
2.0.6.22 1,026 8/18/2016
2.0.6.20 975 8/18/2016
2.0.6.16 1,005 8/18/2016
2.0.6.13 979 8/18/2016
2.0.6.11 990 8/17/2016
2.0.6.9 1,009 7/7/2016
2.0.6.6 1,279 6/15/2016
2.0.6.5 988 6/7/2016
2.0.6.3 1,245 6/7/2016
2.0.6.2 993 6/7/2016
2.0.6 1,029 4/10/2016