mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2026-01-21 18:48:27 +08:00
Synchronization code
This commit is contained in:
@@ -6,7 +6,7 @@ using System.Linq;
|
|||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Kdbndp;
|
using Kdbndp;
|
||||||
using KdbndpTypes;
|
using KdbndpTypes;
|
||||||
|
|
||||||
namespace SqlSugar
|
namespace SqlSugar
|
||||||
{
|
{
|
||||||
@@ -151,6 +151,10 @@ namespace SqlSugar
|
|||||||
{
|
{
|
||||||
sqlParameter.KdbndpDbType = KdbndpDbType.Varchar;
|
sqlParameter.KdbndpDbType = KdbndpDbType.Varchar;
|
||||||
}
|
}
|
||||||
|
if (parameter.CustomDbType != null && parameter.CustomDbType is KdbndpDbType)
|
||||||
|
{
|
||||||
|
sqlParameter.KdbndpDbType = ((KdbndpDbType)parameter.CustomDbType);
|
||||||
|
}
|
||||||
++index;
|
++index;
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
|
|||||||
Reference in New Issue
Block a user