Update unit

This commit is contained in:
sunkaixuna
2021-11-23 18:30:52 +08:00
parent 593b73d5a4
commit 5cdb0cceff
2 changed files with 5 additions and 4 deletions

View File

@@ -13,7 +13,7 @@ namespace OrmTest
var db = new SqlSugarScope(new SqlSugar.ConnectionConfig()
{
ConnectionString =Config.ConnectionString,
DbType = DbType.PostgreSQL,
DbType = DbType.SqlServer,
IsAutoCloseConnection = true
});
@@ -41,13 +41,12 @@ namespace OrmTest
db.Fastest<Test2>().BulkUpdate(updateList);
Console.WriteLine("用例跑完");
Console.ReadKey();
}
[SugarTable("UnitFastest001a")]
[SugarTable("UnitFastest0011a")]
public class Test2
{
[SugarColumn(IsNullable = false, IsPrimaryKey = true)]
[SugarColumn(IsNullable = false,IsIdentity =true, IsPrimaryKey = true)]
public int id { get; set; }
[SugarColumn(IsNullable = false)]