using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace OrmTest { public partial class NewUnitTest { public static void Bulk() { Db.CodeFirst.InitTables(); Db.DbMaintenance.TruncateTable(); var data1 = new UnitIdentity1() { Name = "a", Id=1 }; var data2 = new UnitIdentity1() { Name = "b", Id = 2 }; var data3 = new UnitIdentity1() { Name = "c", Id = 3 }; Db.Fastest().BulkCopy(new List() { data1 }); var list=Db.Queryable().ToList(); if (list.Count != 1 || data1.Name != list.First().Name) { throw new Exception("unit Bulk"); } Db.Fastest().BulkCopy(new List() { data2, data3 }); list = Db.Queryable().ToList(); if (list.Count != 3 || !list.Any(it=>it.Name=="c")) { throw new Exception("unit Bulk"); } Db.Fastest().BulkUpdate(new List() { new UnitIdentity1(){ Id=1, Name="222" }, new UnitIdentity1(){ Id=2, Name="111" } }); list = Db.Queryable().ToList(); if (list.First(it=>it.Id==1).Name!="222") { throw new Exception("unit Bulk"); } if (list.First(it => it.Id == 2).Name != "111") { throw new Exception("unit Bulk"); } if (list.First(it => it.Id == 3).Name != "c") { throw new Exception("unit Bulk"); } Db.CodeFirst.InitTables(); Db.DbMaintenance.TruncateTable(); var count = Db.Fastest().AS("UnitIdentity111").BulkCopy(new List { new UnitIdentity111111111(){ Id=1, Name="jack" } }); if (count == 0) { throw new Exception("unit Bulk"); } count = Db.Fastest().AS("UnitIdentity111").BulkUpdate(new List { new UnitIdentity111111111(){ Id=1, Name="jack" } }); if (count == 0) { throw new Exception("unit Bulk"); } Db.CodeFirst.InitTables(); Db.Fastest().BulkUpdate(new List { new UnitTable001(){ Id=1, table="a" } }); Db.CodeFirst.InitTables(); Db.Fastest().BulkCopy(new List() { new UnitTable01231101() { table=9.4E-05, Id=new Random().Next(1,9999999) } }); var list2=Db.Queryable().ToList(); } } public class UnitTable01231101 { [SqlSugar.SugarColumn(IsPrimaryKey = true)] public int Id { get; set; } public double table { get; set; } } public class UnitTable001 { [SqlSugar.SugarColumn(IsPrimaryKey = true)] public int Id { get; set; } public string table { get; set; } } public class UnitIdentity111 { public int Id { get; set; } public string Name { get; set; } } public class UnitIdentity111111111 { [SqlSugar.SugarColumn(IsPrimaryKey = true)] public int Id { get; set; } public string Name { get; set; } } public class UnitIdentity1 { [SqlSugar.SugarColumn(IsPrimaryKey =true)] public int Id { get; set; } public string Name { get; set; } } }