SqlSugar/Src/Asp.Net/MySqlTest/a3_Merge.cs
2023-11-06 21:26:47 +08:00

51 lines
2.1 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OrmTest
{
internal class _a3_Merge
{
// 中文备注:初始化方法(用于大数据处理)
// English Comment: Initialization method (for big data processing)
internal static void Init()
{
var db = DbHelper.GetNewDb();
//建表
//Create table
db.CodeFirst.InitTables<Order>();
var list = new List<Order>() { new Order() { Name = "jack" } };
// 中文备注:执行插入或更新操作
// English Comment: Perform insert or update operation
db.Storageable(list).ExecuteCommand();
// 中文备注分页执行插入或更新操作每页1000条记录
// English Comment: Perform insert or update operation with paging, 1000 records per page
db.Storageable(list).PageSize(1000).ExecuteCommand();
// 中文备注带异常处理的分页插入或更新操作每页1000条记录
// English Comment: Perform insert or update operation with exception handling and paging, 1000 records per page
db.Storageable(list).PageSize(1000, exrows => { }).ExecuteCommand();
// 中文备注使用Fastest方式批量合并数据用于大数据处理
// English Comment: Merge data using Fastest method (for big data processing)
db.Fastest<Order>().BulkMerge(list);
// 中文备注分页使用Fastest方式批量合并数据每页100000条记录用于大数据处理
// English Comment: Merge data using Fastest method with paging, 100000 records per page (for big data processing)
db.Fastest<Order>().PageSize(100000).BulkMerge(list);
}
[SqlSugar.SugarTable("Order_a3")]
public class Order
{
[SqlSugar.SugarColumn(IsPrimaryKey =true,IsIdentity =true)]
public int Id { get; set; }
public string Name { get; set; }
// 其他属性
}
}
}