mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-24 18:04:52 +08:00
Update exp to sql
This commit is contained in:
parent
d721d6aafa
commit
cad0b8955a
@ -771,10 +771,14 @@ namespace SqlSugar
|
||||
type = DbType.Oracle;
|
||||
else if (this.Context is PostgreSQLExpressionContext)
|
||||
type = DbType.PostgreSQL;
|
||||
else if (this.Context.GetType().Name.StartsWith("MySql"))
|
||||
else if (this.Context.GetType().Name.StartsWith("MySql"))
|
||||
{
|
||||
type = DbType.MySql;
|
||||
}
|
||||
else
|
||||
{
|
||||
type = GetType(this.Context.GetType().Name);
|
||||
}
|
||||
return this.Context.SqlFuncServices.First(it => it.UniqueMethodName == name).MethodValue(model, type, this.Context);
|
||||
}
|
||||
else
|
||||
@ -1021,6 +1025,20 @@ namespace SqlSugar
|
||||
return null;
|
||||
}
|
||||
|
||||
private DbType GetType(string name)
|
||||
{
|
||||
DbType result = DbType.SqlServer;
|
||||
foreach (var item in UtilMethods.EnumToDictionary<DbType>())
|
||||
{
|
||||
if (name.StartsWith(item.Value.ToString()))
|
||||
{
|
||||
result = item.Value;
|
||||
break;
|
||||
}
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
private bool IsContainsArray(MethodCallExpression express, string methodName, bool isValidNativeMethod)
|
||||
{
|
||||
return !isValidNativeMethod && express.Method.DeclaringType.Namespace.IsIn("System.Linq", "System.Collections.Generic") && methodName == "Contains";
|
||||
|
Loading…
Reference in New Issue
Block a user