mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-09-19 18:22:23 +08:00
Update unit
This commit is contained in:
@@ -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)]
|
||||
|
Reference in New Issue
Block a user