This commit is contained in:
sunkaixuan 2023-11-04 00:42:00 +08:00
parent d433f80e7b
commit 9194f37aff
2 changed files with 51 additions and 0 deletions

View File

@ -87,6 +87,7 @@
<Compile Include="UnitTest\UCodeFirst.cs" />
<Compile Include="UnitTest\UInsert3.cs" />
<Compile Include="UnitTest\UJson.cs" />
<Compile Include="UnitTest\UnitBulkCopy.cs" />
<Compile Include="UnitTest\Updateable.cs" />
<Compile Include="UnitTest\UQueryable.cs" />
<Compile Include="UnitTest\UQueryableAsync.cs" />

View File

@ -0,0 +1,50 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace OrmTest
{
internal class UnitBulkCopy
{
public static void Init()
{
var db = NewUnitTest.Db;
db.CodeFirst.InitTables<Unitadfa>();
db.Insertable(new Unitadfa()
{
Name = "A",
Date = DateTime.Now,
}).ExecuteCommand();
db.Insertable(new List<Unitadfa>() {
new Unitadfa()
{
Name = "A",
Date = DateTime.Now,
},
new Unitadfa()
{
Name = "A",
Date = DateTime.Now,
}}).ExecuteCommand();
var list = db.Queryable<Unitadfa>().ToList();
db.DbMaintenance.TruncateTable<Unitadfa>();
db.Fastest<Unitadfa>().OffIdentity().BulkCopy(list);
db.Insertable(new Unitadfa()
{
Name = "A",
Date = DateTime.Now,
}).ExecuteCommand();
db.DbMaintenance.DropTable<Unitadfa>();
}
}
public class Unitadfa
{
[SqlSugar.SugarColumn(IsIdentity = true, IsPrimaryKey = true)]
public int Id { get; set; }
public string Name { get; set; }
[SqlSugar.SugarColumn(ColumnDataType = "Date")]
public DateTime Date { get; set; }
}
}