Update demo

This commit is contained in:
sunkaixuan 2022-07-30 22:56:31 +08:00
parent 36569817e9
commit e5cacb08ca
2 changed files with 5 additions and 2 deletions

View File

@ -63,7 +63,7 @@ namespace OrmTest
}
var list = new List<Users>();
for (var i = 0; i < 10000; i++)
for (var i = 0; i < 100000; i++)
{
list.Add(new Users
@ -74,8 +74,9 @@ namespace OrmTest
password = "161718",
});
}
db.Insertable<Users>(list).ExecuteCommand();
db.Insertable<Users>(list).ExecuteReturnSnowflakeId();
var list2 = db.Queryable<Users>().ToList();
Console.WriteLine("#### Examples End ####");
Console.WriteLine("#### Examples End ####");

View File

@ -10,6 +10,8 @@ namespace OrmTest
public class Users
{
[SugarColumn(IsPrimaryKey = true)]
public long Sid { get; set; }
public int Id { get; set; }
[SqlSugar.SugarColumn(IsNullable = true)]