mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-08-01 10:10:16 +08:00
Synchronization code
This commit is contained in:
parent
9fb116f46a
commit
fea4fe0812
@ -133,6 +133,11 @@ namespace SqlSugar
|
||||
if (sqlParameter.Direction == 0)
|
||||
{
|
||||
sqlParameter.Direction = ParameterDirection.Input;
|
||||
}
|
||||
if (parameter.IsRefCursor)
|
||||
{
|
||||
sqlParameter.KdbndpDbType = KdbndpDbType.Refcursor;
|
||||
sqlParameter.Direction = ParameterDirection.Output;
|
||||
}
|
||||
result[index] = sqlParameter;
|
||||
if (sqlParameter.Direction.IsIn(ParameterDirection.Output, ParameterDirection.InputOutput, ParameterDirection.ReturnValue))
|
||||
|
Loading…
Reference in New Issue
Block a user