mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-10-15 18:55:07 +08:00
ORACLE performance optimizing
This commit is contained in:
@@ -150,6 +150,11 @@ namespace SqlSugar
|
||||
sqlParameter.Value = (bool)parameter.Value ? 1 : 0;
|
||||
}
|
||||
}
|
||||
else if (parameter.DbType == System.Data.DbType.DateTime)
|
||||
{
|
||||
sqlParameter.Value = parameter.Value;
|
||||
sqlParameter.DbType = System.Data.DbType.Date;
|
||||
}
|
||||
else
|
||||
{
|
||||
if (parameter.Value != null && parameter.Value.GetType() == UtilConstants.GuidType)
|
||||
|
Reference in New Issue
Block a user