mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-10-15 18:55:07 +08:00
Update IsNumberArray
This commit is contained in:
@@ -31,7 +31,19 @@ namespace SqlSugar
|
||||
typeof(short?[]),
|
||||
typeof(uint?[]),
|
||||
typeof(ulong?[]),
|
||||
typeof(ushort?[]));
|
||||
typeof(ushort?[]),
|
||||
typeof(List<int>),
|
||||
typeof(List<long>),
|
||||
typeof(List<short>),
|
||||
typeof(List<uint>),
|
||||
typeof(List<ulong>),
|
||||
typeof(List<ushort>),
|
||||
typeof(List<int?>),
|
||||
typeof(List<long?>),
|
||||
typeof(List<short?>),
|
||||
typeof(List<uint?>),
|
||||
typeof(List<ulong?>),
|
||||
typeof(List<ushort?>));
|
||||
}
|
||||
public static string GetNativeSql(string sql,SugarParameter[] pars)
|
||||
{
|
||||
|
Reference in New Issue
Block a user