OrangeCloud.Core 3.2.7.1

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

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

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.7.9 56 6/25/2024
3.2.7.8 54 6/25/2024
3.2.7.7 63 6/3/2024
3.2.7.6 54 6/2/2024
3.2.7.5 90 5/7/2024
3.2.7.3 90 4/29/2024
3.2.7.2 87 4/29/2024
3.2.7.1 89 3/25/2024
3.2.7 80 3/23/2024
3.2.6.9 105 1/30/2024
3.2.6.8 106 1/10/2024
3.2.6.7 145 12/7/2023
3.2.6.6 84 12/7/2023
3.2.6.5 115 12/3/2023
3.2.6.3 104 11/13/2023
3.2.6.2 83 11/8/2023
3.2.6.1 99 11/6/2023
3.2.6 108 11/5/2023
3.2.5.2 119 10/21/2023
3.2.5.1 152 8/16/2023
3.2.3.9 205 3/14/2023
3.2.3.8 330 11/22/2022
3.2.3.6 317 11/22/2022
3.2.3.5 294 11/22/2022
3.2.3.3 325 11/15/2022
3.2.3.2 351 11/9/2022
3.2.3.1 334 11/9/2022
3.2.3 330 11/9/2022
3.2.2.9 335 11/8/2022
3.2.2.8 336 11/8/2022
3.2.2.6 336 11/7/2022
3.2.2.5 369 11/3/2022
3.2.2.3 371 11/3/2022
3.2.2.2 359 11/3/2022
3.2.2.1 366 11/3/2022
3.2.2 349 11/3/2022
3.2.1.9 352 11/3/2022
3.2.1.8 338 11/3/2022
3.2.1.6 360 11/1/2022
3.2.1.5 384 10/28/2022
3.2.1.3 378 10/27/2022
3.2.1.2 392 10/27/2022
3.2.1.1 365 10/26/2022
3.2.1 401 10/26/2022
3.2.0.9 393 10/26/2022
3.2.0.8 375 10/24/2022
3.2.0.7 377 10/24/2022
3.2.0.6 407 10/24/2022
3.2.0.5 416 10/24/2022
3.2.0.3 416 10/21/2022
3.2.0.2 404 10/12/2022
3.2.0.1 417 10/11/2022
3.2.0 425 10/8/2022
3.1.1.1 460 9/21/2022
3.1.1 542 6/21/2022
3.1.0.8 678 1/21/2022
3.1.0.7 649 1/21/2022
3.1.0.6 676 1/18/2022
3.1.0.5 514 1/12/2022
3.1.0.3 645 7/28/2020
3.1.0.2 604 7/28/2020
3.1.0.1 693 2/26/2020
2.2.1.6 616 10/18/2019
2.2.1.5 558 10/18/2019
2.2.1.3 566 10/17/2019
2.2.1.2 699 12/26/2018
2.2.1.1 722 12/18/2018
2.2.1 960 4/18/2018
2.2.0.9 939 4/18/2018
2.2.0.8 1,076 2/7/2017
2.2.0.6 955 2/7/2017
2.2.0.3 987 12/22/2016
2.2.0.2 981 12/22/2016
2.2.0.1 1,063 11/23/2016
2.2.0 1,008 11/22/2016
2.1.0 983 11/14/2016
2.0.8.3 1,094 11/13/2016
2.0.8.2 996 9/28/2016
2.0.8.1 970 9/8/2016
2.0.7.10 970 9/7/2016
2.0.7.9 1,053 9/7/2016
2.0.7.8 956 9/7/2016
2.0.7.7 946 9/7/2016
2.0.7.6 952 9/2/2016
2.0.7.5 983 9/1/2016
2.0.7.3 981 8/31/2016
2.0.7.2 988 8/29/2016
2.0.7.1 981 8/29/2016
2.0.6.36 953 8/27/2016
2.0.6.32 959 8/27/2016
2.0.6.28 1,021 8/27/2016
2.0.6.26 1,008 8/27/2016
2.0.6.22 999 8/18/2016
2.0.6.20 953 8/18/2016
2.0.6.16 987 8/18/2016
2.0.6.13 959 8/18/2016
2.0.6.11 971 8/17/2016
2.0.6.9 986 7/7/2016
2.0.6.6 1,257 6/15/2016
2.0.6.5 967 6/7/2016
2.0.6.3 1,221 6/7/2016
2.0.6.2 970 6/7/2016
2.0.6 1,009 4/10/2016