mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-11-24 16:43:17 +08:00
Update达梦
This commit is contained in:
@@ -1604,6 +1604,10 @@ namespace SqlSugar
|
|||||||
{//Oracle bug
|
{//Oracle bug
|
||||||
gobalOutputParamter = this.OutputParameters.FirstOrDefault(it => it.ParameterName == outputParameter.ParameterName.TrimStart(outputParameter.ParameterName.First()));
|
gobalOutputParamter = this.OutputParameters.FirstOrDefault(it => it.ParameterName == outputParameter.ParameterName.TrimStart(outputParameter.ParameterName.First()));
|
||||||
}
|
}
|
||||||
|
if (gobalOutputParamter == null)
|
||||||
|
{//Dm bug
|
||||||
|
gobalOutputParamter = this.OutputParameters.FirstOrDefault(it => it.ParameterName == ":" + outputParameter.ParameterName.TrimStart(outputParameter.ParameterName.First()));
|
||||||
|
}
|
||||||
outputParameter.Value = gobalOutputParamter.Value;
|
outputParameter.Value = gobalOutputParamter.Value;
|
||||||
this.OutputParameters.Remove(gobalOutputParamter);
|
this.OutputParameters.Remove(gobalOutputParamter);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user