mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-24 18:04:52 +08:00
Compatible with new drivers
This commit is contained in:
parent
3c19a0128f
commit
34ddcc5568
@ -138,6 +138,10 @@ namespace SqlSugar
|
||||
sqlParameter.Value = Convert.ToDateTime("1753/01/01");
|
||||
}
|
||||
}
|
||||
if (parameter.Direction == 0)
|
||||
{
|
||||
parameter.Direction = ParameterDirection.Input;
|
||||
}
|
||||
sqlParameter.Direction = parameter.Direction;
|
||||
result[index] = sqlParameter;
|
||||
if (parameter.TypeName.HasValue()) {
|
||||
|
@ -138,6 +138,10 @@ namespace SqlSugar
|
||||
sqlParameter.Value = Convert.ToDateTime("1753/01/01");
|
||||
}
|
||||
}
|
||||
if (parameter.Direction == 0)
|
||||
{
|
||||
parameter.Direction = ParameterDirection.Input;
|
||||
}
|
||||
sqlParameter.Direction = parameter.Direction;
|
||||
result[index] = sqlParameter;
|
||||
if (parameter.TypeName.HasValue()) {
|
||||
|
Loading…
Reference in New Issue
Block a user