mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-10-15 18:55:07 +08:00
@@ -67,14 +67,14 @@ namespace SqlSugar.OceanBaseForOracle
|
|||||||
{
|
{
|
||||||
if (this.Context.Ado.Transaction != null)
|
if (this.Context.Ado.Transaction != null)
|
||||||
{
|
{
|
||||||
return await GetScalarAsync(sql, parameters);
|
return await _GetScalarAsync(sql, parameters);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
this.Context.Ado.BeginTran();
|
this.Context.Ado.BeginTran();
|
||||||
var result = await GetScalarAsync(sql, parameters);
|
var result = await _GetScalarAsync(sql, parameters);
|
||||||
this.Context.Ado.CommitTran();
|
this.Context.Ado.CommitTran();
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user