Oracle ExecommandAsync -1 bug

This commit is contained in:
sunkaixuna
2021-12-22 13:06:40 +08:00
parent 2e21371302
commit 12cdbf24ba
2 changed files with 20 additions and 1 deletions

View File

@@ -59,6 +59,17 @@ namespace OrmTest
new UnitGuidTest() { Id = Guid.NewGuid(),name= "a" }
}).ExecuteCommand();
var updateObjs = new List<Order> {
new Order() { Id = 11, Name = "order11" }
};
//update all columns by primary key
if (Db.Updateable(updateObjs).ExecuteCommandAsync().GetAwaiter().GetResult() != 1)
{
throw new Exception("unit error");
}
}
}
public class UnitGuidTest