You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
1.6 KiB
63 lines
1.6 KiB
3 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Reflection;
|
||
|
using SqlSugar;
|
||
|
|
||
|
namespace OrmTest
|
||
|
{
|
||
|
public partial class NewUnitTest
|
||
|
{
|
||
|
private static void Fastest2()
|
||
|
{
|
||
|
var db = new SqlSugarScope(new SqlSugar.ConnectionConfig()
|
||
|
{
|
||
|
ConnectionString =Config.ConnectionString,
|
||
|
DbType = DbType.PostgreSQL,
|
||
|
IsAutoCloseConnection = true
|
||
|
});
|
||
|
|
||
|
db.CodeFirst.InitTables<Test2>();
|
||
|
|
||
|
//用例代码
|
||
|
db.Insertable(new Test2() { p = "1" }).ExecuteCommand();//用例代码
|
||
|
|
||
|
db.Insertable(new Test2() { p = "2", delPer = 1 }).ExecuteCommand();//用例代码
|
||
|
|
||
|
var updateList = db.Queryable<Test2>()
|
||
|
.ToList();
|
||
|
|
||
|
db.Fastest<Test2>().BulkCopy(updateList);
|
||
|
|
||
|
int index = 0;
|
||
|
|
||
|
foreach (var update in updateList)
|
||
|
{
|
||
|
update.p = index.ToString();
|
||
|
|
||
|
index++;
|
||
|
}
|
||
|
|
||
|
db.Fastest<Test2>().BulkUpdate(updateList);
|
||
|
|
||
|
Console.WriteLine("用例跑完");
|
||
|
Console.ReadKey();
|
||
|
}
|
||
|
|
||
|
[SugarTable("UnitFastest001a")]
|
||
|
public class Test2
|
||
|
{
|
||
|
[SugarColumn(IsNullable = false, IsPrimaryKey = true)]
|
||
|
public int id { get; set; }
|
||
|
|
||
|
[SugarColumn(IsNullable = false)]
|
||
|
public string p { get; set; }
|
||
|
|
||
|
[SugarColumn(IsNullable = true)]
|
||
|
public int? delPer { get; set; }
|
||
|
|
||
|
[SugarColumn(IsNullable = true)]
|
||
|
public DateTime? del_Time { get; set; }
|
||
|
}
|
||
|
}
|
||
|
}
|