SqlSugar/Src/Asp.Net/SqlServerTest/UnitTest/UInsert.cs

105 lines
4.0 KiB
C#
Raw Normal View History

2020-12-20 00:14:33 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OrmTest
{
public partial class NewUnitTest
{
public static void Insert()
{
var db = Db;
2021-01-28 21:09:15 +08:00
db.DbMaintenance.TruncateTable<UinitBlukTable>();
2020-12-20 00:14:33 +08:00
db.CodeFirst.InitTables<UinitBlukTable>();
db.Insertable(new List<UinitBlukTable>
{
new UinitBlukTable(){ Id=1,Create=DateTime.Now, Name="00" },
new UinitBlukTable(){ Id=2,Create=DateTime.Now, Name="11" }
}).UseSqlServer().ExecuteBlueCopy();
var dt = db.Queryable<UinitBlukTable>().ToDataTable();
dt.Rows[0][0] = 3;
dt.Rows[1][0] = 4;
dt.TableName = "[UinitBlukTable]";
db.Insertable(dt).UseSqlServer().ExecuteBlueCopy();
db.Insertable(new List<UinitBlukTable2>
{
new UinitBlukTable2(){ Id=5, Name="55" },
new UinitBlukTable2(){ Id=6, Name="66" }
}).UseSqlServer().ExecuteBlueCopy();
db.Ado.BeginTran();
db.Insertable(new List<UinitBlukTable2>
{
new UinitBlukTable2(){ Id=7, Name="77" },
new UinitBlukTable2(){ Id=8, Name="88" }
}).UseSqlServer().ExecuteBlueCopy();
var task= db.Insertable(new List<UinitBlukTable2>
{
new UinitBlukTable2(){ Id=9, Name="9" },
new UinitBlukTable2(){ Id=10, Name="10" }
}).UseSqlServer().ExecuteBlueCopyAsync();
task.Wait();
db.Ado.CommitTran();
var list = db.Queryable<UinitBlukTable>().ToList();
db.DbMaintenance.TruncateTable<UinitBlukTable>();
if (string.Join("", list.Select(it => it.Id)) != "12345678910")
{
throw new Exception("Unit Insert");
}
2021-01-28 21:09:15 +08:00
List<UinitBlukTable> list2 = new List<UinitBlukTable>();
2021-01-28 22:13:36 +08:00
for (int i = 1; i <= 20; i++)
2021-01-28 21:09:15 +08:00
{
UinitBlukTable data = new UinitBlukTable()
{
Create=DateTime.Now.AddDays(-1),
Id=i ,
Name =i%3==0?"a":"b"
};
list2.Add(data);
}
list2.First().Name = null;
db.DbMaintenance.TruncateTable<UinitBlukTable>();
2021-01-29 15:28:20 +08:00
db.Insertable(new UinitBlukTable() { Id = 2, Name = "b", Create = DateTime.Now }).ExecuteCommand();
2021-01-28 21:09:15 +08:00
var x=Db.Storageable(list2)
2021-01-29 15:28:20 +08:00
.SplitInsert(it => it.NotAny(y=>y.Id==it.Item.Id))
.SplitUpdate(it => it.Any(y => y.Id == it.Item.Id))
2021-01-28 21:09:15 +08:00
.SplitDelete(it=>it.Item.Id>10)
2021-01-29 15:28:20 +08:00
.SplitIgnore(it=>it.Item.Id==1)
2021-01-28 21:09:15 +08:00
.SplitError(it => it.Item.Id == 3,"id不能等于3")
2021-01-28 22:13:36 +08:00
.SplitError(it => it.Item.Id == 4, "id不能等于4")
.SplitError(it => it.Item.Id == 5, "id不能等于5")
2021-01-29 15:28:20 +08:00
.SplitError(it => it.Item.Name==null, "name不能等于")
.WhereColumns(it=> new { it.Id })
2021-01-28 21:09:15 +08:00
.ToStorage();
2021-01-29 01:17:51 +08:00
x.AsDeleteable.ExecuteCommand();
x.AsInsertable.ExecuteCommand();
2021-01-28 22:13:36 +08:00
x.AsUpdateable.ExecuteCommand();
2021-01-29 01:17:51 +08:00
foreach (var item in x.ErrorList)
{
2021-01-29 15:28:20 +08:00
Console.Write(item.StorageMessage+" ");
2021-01-29 01:17:51 +08:00
}
2021-01-28 21:09:15 +08:00
db.DbMaintenance.TruncateTable<UinitBlukTable>();
2020-12-20 00:14:33 +08:00
}
public class UinitBlukTable
{
2021-01-29 15:28:20 +08:00
[SqlSugar.SugarColumn(IsPrimaryKey =true)]
2020-12-20 00:14:33 +08:00
public int Id { get; set; }
public string Name { get; set; }
[SqlSugar.SugarColumn(IsNullable =true)]
public DateTime? Create { get; set; }
}
[SqlSugar.SugarTable("UinitBlukTable")]
public class UinitBlukTable2
{
public string Name { get; set; }
public int Id { get; set; }
}
}
}