mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-04-15 23:42:51 +08:00
634 lines
37 KiB
C#
634 lines
37 KiB
C#
using FreeSql.Internal;
|
||
using Newtonsoft.Json.Linq;
|
||
using System;
|
||
using System.Collections;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Linq.Expressions;
|
||
using System.Text;
|
||
using System.Text.RegularExpressions;
|
||
|
||
namespace FreeSql.QuestDb
|
||
{
|
||
class QuestDbExpression : CommonExpression
|
||
{
|
||
public QuestDbExpression(CommonUtils common) : base(common)
|
||
{
|
||
}
|
||
|
||
public override string ExpressionLambdaToSqlOther(Expression exp, ExpTSC tsc)
|
||
{
|
||
Func<Expression, string> getExp = exparg => ExpressionLambdaToSql(exparg, tsc);
|
||
switch (exp.NodeType)
|
||
{
|
||
case ExpressionType.ArrayLength:
|
||
var arrOper = (exp as UnaryExpression)?.Operand;
|
||
if (arrOper.Type == typeof(byte[])) return $"length({getExp(arrOper)})";
|
||
break;
|
||
case ExpressionType.Convert:
|
||
var operandExp = (exp as UnaryExpression)?.Operand;
|
||
var gentype = exp.Type.NullableTypeOrThis();
|
||
if (gentype != operandExp.Type.NullableTypeOrThis())
|
||
{
|
||
switch (exp.Type.NullableTypeOrThis().ToString())
|
||
{
|
||
case "System.Boolean":
|
||
return $"(cast({getExp(operandExp)} as string) not in ('0','false','f','no'))";
|
||
case "System.Byte": return $"cast({getExp(operandExp)} byte)";
|
||
case "System.Char": return $"left(cast({getExp(operandExp)} as string), 1)";
|
||
case "System.DateTime":
|
||
return ExpressionConstDateTime(operandExp) ?? $"cast({getExp(operandExp)} as timestamp)";
|
||
case "System.Decimal": return $"cast({getExp(operandExp)} as double)";
|
||
case "System.Double": return $"cast({getExp(operandExp)} as double)";
|
||
case "System.Int16": return $"cast({getExp(operandExp)} as short)";
|
||
case "System.Int32": return $"cast({getExp(operandExp)} as int)";
|
||
case "System.Int64": return $"cast({getExp(operandExp)} as long)";
|
||
case "System.SByte": return $"cast({getExp(operandExp)} as byte)";
|
||
case "System.Single": return $"cast({getExp(operandExp)} as float)";
|
||
case "System.String": return $"cast({getExp(operandExp)} as string)";
|
||
case "System.UInt16": return $"cast({getExp(operandExp)} as short)";
|
||
case "System.UInt32": return $"cast({getExp(operandExp)} as int)";
|
||
case "System.UInt64": return $"cast({getExp(operandExp)} long)";
|
||
case "System.Guid": return $"cast({getExp(operandExp)} symbol)";
|
||
}
|
||
}
|
||
|
||
break;
|
||
case ExpressionType.Call:
|
||
var callExp = exp as MethodCallExpression;
|
||
|
||
switch (callExp.Method.Name)
|
||
{
|
||
case "Parse":
|
||
case "TryParse":
|
||
switch (callExp.Method.DeclaringType.NullableTypeOrThis().ToString())
|
||
{
|
||
case "System.Boolean":
|
||
return $"(cast({getExp(callExp.Arguments[0])} as string) not in ('0','false','f','no'))";
|
||
case "System.Byte": return $"cast({getExp(callExp.Arguments[0])} byte)";
|
||
case "System.Char": return $"left(cast({getExp(callExp.Arguments[0])} as string), 1)";
|
||
case "System.DateTime":
|
||
return ExpressionConstDateTime(callExp.Arguments[0]) ?? $"cast({getExp(callExp.Arguments[0])} as timestamp)";
|
||
case "System.Decimal": return $"cast({getExp(callExp.Arguments[0])} as double)";
|
||
case "System.Double": return $"cast({getExp(callExp.Arguments[0])} as double)";
|
||
case "System.Int16": return $"cast({getExp(callExp.Arguments[0])} as short)";
|
||
case "System.Int32": return $"cast({getExp(callExp.Arguments[0])} as int)";
|
||
case "System.Int64": return $"cast({getExp(callExp.Arguments[0])} as long)";
|
||
case "System.SByte": return $"cast({getExp(callExp.Arguments[0])} as byte)";
|
||
case "System.Single": return $"cast({getExp(callExp.Arguments[0])} as float)";
|
||
case "System.String": return $"cast({getExp(callExp.Arguments[0])} as string)";
|
||
case "System.UInt16": return $"cast({getExp(callExp.Arguments[0])} as short)";
|
||
case "System.UInt32": return $"cast({getExp(callExp.Arguments[0])} as int)";
|
||
case "System.UInt64": return $"cast({getExp(callExp.Arguments[0])} long)";
|
||
case "System.Guid": return $"cast({getExp(callExp.Arguments[0])} symbol)";
|
||
}
|
||
break;
|
||
case "NewGuid":
|
||
return null;
|
||
case "Next":
|
||
if (callExp.Object?.Type == typeof(Random)) return "rnd_int()";
|
||
return null;
|
||
case "NextDouble":
|
||
if (callExp.Object?.Type == typeof(Random)) return "rnd_double()";
|
||
return null;
|
||
case "Random":
|
||
if (callExp.Method.DeclaringType.IsNumberType()) return "rnd_int()";
|
||
return null;
|
||
case "ToString":
|
||
if (callExp.Object != null)
|
||
{
|
||
if (callExp.Object.Type.NullableTypeOrThis().IsEnum)
|
||
{
|
||
tsc.SetMapColumnTmp(null);
|
||
var oldMapType = tsc.SetMapTypeReturnOld(typeof(string));
|
||
var enumStr = ExpressionLambdaToSql(callExp.Object, tsc);
|
||
tsc.SetMapColumnTmp(null).SetMapTypeReturnOld(oldMapType);
|
||
return enumStr;
|
||
}
|
||
var value = ExpressionGetValue(callExp.Object, out var success);
|
||
if (success) return formatSql(value, typeof(string), null, null);
|
||
return callExp.Arguments.Count == 0 ? $"cast({getExp(callExp.Object)} as string)" : null;
|
||
}
|
||
return null;
|
||
}
|
||
|
||
var objExp = callExp.Object;
|
||
var objType = objExp?.Type;
|
||
if (objType?.FullName == "System.Byte[]") return null;
|
||
|
||
var argIndex = 0;
|
||
if (objType == null && callExp.Method.DeclaringType == typeof(Enumerable))
|
||
{
|
||
objExp = callExp.Arguments.FirstOrDefault();
|
||
objType = objExp?.Type;
|
||
argIndex++;
|
||
|
||
if (objType == typeof(string))
|
||
{
|
||
switch (callExp.Method.Name)
|
||
{
|
||
case "First":
|
||
case "FirstOrDefault":
|
||
return $"left({getExp(callExp.Arguments[0])}, 1)";
|
||
}
|
||
}
|
||
}
|
||
if (objType == null) objType = callExp.Method.DeclaringType;
|
||
if (objType != null || objType.IsArrayOrList())
|
||
{
|
||
if (argIndex >= callExp.Arguments.Count) break;
|
||
tsc.SetMapColumnTmp(null);
|
||
var args1 = getExp(callExp.Arguments[argIndex]);
|
||
var oldMapType = tsc.SetMapTypeReturnOld(tsc.mapTypeTmp);
|
||
var oldDbParams = objExp?.NodeType == ExpressionType.MemberAccess ? tsc.SetDbParamsReturnOld(null) : null; //#900 UseGenerateCommandParameterWithLambda(true) 子查询 bug、以及 #1173 参数化 bug
|
||
tsc.isNotSetMapColumnTmp = true;
|
||
var left = objExp == null ? null : getExp(objExp);
|
||
tsc.isNotSetMapColumnTmp = false;
|
||
tsc.SetMapColumnTmp(null).SetMapTypeReturnOld(oldMapType);
|
||
if (oldDbParams != null) tsc.SetDbParamsReturnOld(oldDbParams);
|
||
switch (callExp.Method.Name)
|
||
{
|
||
case "Contains":
|
||
//判断 in //在各大 Provider AdoProvider 中已约定,500元素分割, 3空格\r\n4空格
|
||
return $"(({args1}) in {left.Replace(", \r\n \r\n", $") \r\n OR ({args1}) in (")})";
|
||
}
|
||
}
|
||
break;
|
||
case ExpressionType.NewArrayInit:
|
||
var arrExp = exp as NewArrayExpression;
|
||
var arrSb = new StringBuilder();
|
||
arrSb.Append("(");
|
||
for (var a = 0; a < arrExp.Expressions.Count; a++)
|
||
{
|
||
if (a > 0) arrSb.Append(",");
|
||
if (a % 500 == 499) arrSb.Append(" \r\n \r\n"); //500元素分割, 3空格\r\n4空格
|
||
arrSb.Append(getExp(arrExp.Expressions[a]));
|
||
}
|
||
if (arrSb.Length == 1) arrSb.Append("NULL");
|
||
return arrSb.Append(")").ToString();
|
||
case ExpressionType.ListInit:
|
||
var listExp = exp as ListInitExpression;
|
||
var listSb = new StringBuilder();
|
||
listSb.Append("(");
|
||
for (var a = 0; a < listExp.Initializers.Count; a++)
|
||
{
|
||
if (listExp.Initializers[a].Arguments.Any() == false) continue;
|
||
if (a > 0) listSb.Append(",");
|
||
listSb.Append(getExp(listExp.Initializers[a].Arguments.FirstOrDefault()));
|
||
}
|
||
if (listSb.Length == 1) listSb.Append("NULL");
|
||
return listSb.Append(")").ToString();
|
||
case ExpressionType.New:
|
||
var newExp = exp as NewExpression;
|
||
if (typeof(IList).IsAssignableFrom(newExp.Type))
|
||
{
|
||
if (newExp.Arguments.Count == 0) return "(NULL)";
|
||
if (typeof(IEnumerable).IsAssignableFrom(newExp.Arguments[0].Type) == false) return "(NULL)";
|
||
return getExp(newExp.Arguments[0]);
|
||
}
|
||
return null;
|
||
}
|
||
|
||
return null;
|
||
}
|
||
|
||
public override string ExpressionLambdaToSqlMemberAccessString(MemberExpression exp, ExpTSC tsc)
|
||
{
|
||
if (exp.Expression == null)
|
||
{
|
||
switch (exp.Member.Name)
|
||
{
|
||
case "Empty": return "''";
|
||
}
|
||
|
||
return null;
|
||
}
|
||
|
||
var left = ExpressionLambdaToSql(exp.Expression, tsc);
|
||
switch (exp.Member.Name)
|
||
{
|
||
case "Length": return $"length({left})";
|
||
}
|
||
|
||
return null;
|
||
}
|
||
|
||
public override string ExpressionLambdaToSqlMemberAccessDateTime(MemberExpression exp, ExpTSC tsc)
|
||
{
|
||
if (exp.Expression == null)
|
||
{
|
||
switch (exp.Member.Name)
|
||
{
|
||
case "Now": return _common.Now;
|
||
case "UtcNow": return _common.NowUtc;
|
||
case "Today": return $"date_trunc('day',{_common.Now})";
|
||
case "MinValue": return "to_timestamp('0001-01-01', 'yyyy-MM-dd')";
|
||
case "MaxValue": return "to_timestamp('9999-12-31 23:59:59.999999', 'yyyy-MM-dd HH:mm:ss.SSSUUU')";
|
||
}
|
||
return null;
|
||
}
|
||
|
||
var left = ExpressionLambdaToSql(exp.Expression, tsc);
|
||
switch (exp.Member.Name)
|
||
{
|
||
case "Date": return $"date_trunc('day',{left})";
|
||
case "TimeOfDay": return $"(hour({left})*3600+minute({left})*60+second({left})";
|
||
case "DayOfWeek": return $"(day_of_week_sunday_first({left})-1)";
|
||
case "Day": return $"day({left})";
|
||
case "DayOfYear": return $"datediff('d',date_trunc('year',{left}),{left})";
|
||
case "Month": return $"month({left})";
|
||
case "Year": return $"year({left})";
|
||
case "Hour": return $"hour({left})";
|
||
case "Minute": return $"minute({left})";
|
||
case "Second": return $"second({left})";
|
||
case "Millisecond":return $"millis({left})";
|
||
case "Ticks": return $"(extract(epoch from {left})*10000000+millis({left})*10000+micros({left})*10+621355968000000000)";
|
||
}
|
||
return null;
|
||
}
|
||
|
||
public override string ExpressionLambdaToSqlMemberAccessTimeSpan(MemberExpression exp, ExpTSC tsc)
|
||
{
|
||
if (exp.Expression == null)
|
||
{
|
||
switch (exp.Member.Name)
|
||
{
|
||
case "Zero": return "0";
|
||
case "MinValue": return "-922337203685477580"; //微秒 Ticks / 10
|
||
case "MaxValue": return "922337203685477580";
|
||
}
|
||
|
||
return null;
|
||
}
|
||
|
||
var left = ExpressionLambdaToSql(exp.Expression, tsc);
|
||
switch (exp.Member.Name)
|
||
{
|
||
case "Days": return $"floor(({left})/{60 * 60 * 24})";
|
||
case "Hours": return $"floor(({left})/{60 * 60}%24)";
|
||
case "Milliseconds": return $"0";
|
||
case "Minutes": return $"(floor(({left})/60)%60)";
|
||
case "Seconds": return $"(({left})%60)";
|
||
case "Ticks": return $"(({left})*{(long)1000000 * 10})";
|
||
case "TotalDays": return $"(({left})/{60 * 60 * 24})";
|
||
case "TotalHours": return $"(({left})/{60 * 60})";
|
||
case "TotalMilliseconds": return $"(({left})*1000)";
|
||
case "TotalMinutes": return $"(({left})/60)";
|
||
case "TotalSeconds": return $"({left})";
|
||
}
|
||
|
||
return null;
|
||
}
|
||
|
||
public override string ExpressionLambdaToSqlCallString(MethodCallExpression exp, ExpTSC tsc)
|
||
{
|
||
Func<Expression, string> getExp = exparg => ExpressionLambdaToSql(exparg, tsc);
|
||
if (exp.Object == null)
|
||
{
|
||
switch (exp.Method.Name)
|
||
{
|
||
case "IsNullOrEmpty":
|
||
var arg1 = getExp(exp.Arguments[0]);
|
||
return $"({arg1} is null or {arg1} = '')";
|
||
case "IsNullOrWhiteSpace":
|
||
var arg2 = getExp(exp.Arguments[0]);
|
||
return $"({arg2} is null or {arg2} = '' or trim({arg2}) = '')";
|
||
case "Concat":
|
||
if (exp.Arguments.Count == 1 && exp.Arguments[0].NodeType == ExpressionType.NewArrayInit && exp.Arguments[0] is NewArrayExpression concatNewArrExp)
|
||
return _common.StringConcat(concatNewArrExp.Expressions.Select(a => getExp(a)).ToArray(), null);
|
||
return _common.StringConcat(exp.Arguments.Select(a => getExp(a)).ToArray(), null);
|
||
case "Format":
|
||
if (exp.Arguments[0].NodeType != ExpressionType.Constant)
|
||
throw new Exception(
|
||
CoreStrings.Not_Implemented_Expression_ParameterUseConstant(exp, exp.Arguments[0]));
|
||
var expArgsHack =
|
||
exp.Arguments.Count == 2 && exp.Arguments[1].NodeType == ExpressionType.NewArrayInit
|
||
? (exp.Arguments[1] as NewArrayExpression).Expressions
|
||
: exp.Arguments.Where((a, z) => z > 0);
|
||
//3个 {} 时,Arguments 解析出来是分开的
|
||
//4个 {} 时,Arguments[1] 只能解析这个出来,然后里面是 NewArray []
|
||
var expArgs = expArgsHack.Select(a =>
|
||
{
|
||
var atype = (a as UnaryExpression)?.Operand.Type.NullableTypeOrThis() ??
|
||
a.Type.NullableTypeOrThis();
|
||
if (atype == typeof(string))
|
||
return $"'||{_common.IsNull(ExpressionLambdaToSql(a, tsc), "''")}||'";
|
||
return $"'||{_common.IsNull($"cast({ExpressionLambdaToSql(a, tsc)} as string)", "''")}||'";
|
||
}).ToArray();
|
||
return string.Format(ExpressionLambdaToSql(exp.Arguments[0], tsc), expArgs);
|
||
case "Join":
|
||
if (exp.IsStringJoin(out var tolistObjectExp, out var toListMethod, out var toListArgs1))
|
||
{
|
||
var newToListArgs0 = Expression.Call(tolistObjectExp, toListMethod,
|
||
Expression.Lambda(
|
||
Expression.Call(
|
||
typeof(SqlExtExtensions).GetMethod("StringJoinPgsqlGroupConcat"),
|
||
Expression.Convert(toListArgs1.Body, typeof(object)),
|
||
Expression.Convert(exp.Arguments[0], typeof(object))),
|
||
toListArgs1.Parameters));
|
||
var newToListSql = getExp(newToListArgs0);
|
||
return newToListSql;
|
||
}
|
||
|
||
break;
|
||
}
|
||
}
|
||
else
|
||
{
|
||
var left = getExp(exp.Object);
|
||
switch (exp.Method.Name)
|
||
{
|
||
case "StartsWith":
|
||
case "EndsWith":
|
||
case "Contains":
|
||
var args0Value = getExp(exp.Arguments[0]);
|
||
if (args0Value == "NULL") return $"({left}) IS NULL";
|
||
if (args0Value.Contains("%"))
|
||
{
|
||
if (exp.Method.Name == "StartsWith") return $"strpos({left}, {args0Value}) = 1";
|
||
if (exp.Method.Name == "EndsWith") return $"strpos({left}, {args0Value}) = length({left})-length({args0Value})+1";
|
||
return $"strpos({left}, {args0Value}) > 0";
|
||
}
|
||
|
||
var likeOpt = "LIKE";
|
||
if (exp.Arguments.Count > 1)
|
||
{
|
||
if (exp.Arguments[1].Type == typeof(bool) || exp.Arguments[1].Type == typeof(StringComparison)) likeOpt = "ILIKE";
|
||
}
|
||
|
||
if (exp.Method.Name == "StartsWith")
|
||
return $"({left}) {likeOpt} {(args0Value.EndsWith("'") ? args0Value.Insert(args0Value.Length - 1, "%") : $"(cast({args0Value} as string) || '%')")}";
|
||
if (exp.Method.Name == "EndsWith")
|
||
return $"({left}) {likeOpt} {(args0Value.StartsWith("'") ? args0Value.Insert(1, "%") : $"('%' || cast({args0Value} as string))")}";
|
||
if (args0Value.StartsWith("'") && args0Value.EndsWith("'")) return $"({left}) {likeOpt} {args0Value.Insert(1, "%").Insert(args0Value.Length, "%")}";
|
||
return $"({left}) {likeOpt} ('%' || cast({args0Value} as string) || '%')";
|
||
case "ToLower": return $"lower({left})";
|
||
case "ToUpper": return $"upper({left})";
|
||
case "Substring":
|
||
var substrArgs1 = getExp(exp.Arguments[0]);
|
||
if (long.TryParse(substrArgs1, out var testtrylng1)) substrArgs1 = (testtrylng1 + 1).ToString();
|
||
else substrArgs1 += "+1";
|
||
if (exp.Arguments.Count == 1) return $"substring({left}, {substrArgs1})";
|
||
return $"substring({left}, {substrArgs1}, {getExp(exp.Arguments[1])})";
|
||
case "IndexOf": return $"(strpos({left}, {getExp(exp.Arguments[0])})-1)";
|
||
case "PadLeft":
|
||
if (exp.Arguments.Count == 1) return $"lpad({left}, {getExp(exp.Arguments[0])})";
|
||
return $"lpad({left}, {getExp(exp.Arguments[0])}, {getExp(exp.Arguments[1])})";
|
||
case "PadRight":
|
||
if (exp.Arguments.Count == 1) return $"rpad({left}, {getExp(exp.Arguments[0])})";
|
||
return $"rpad({left}, {getExp(exp.Arguments[0])}, {getExp(exp.Arguments[1])})";
|
||
case "Trim":
|
||
case "TrimStart":
|
||
case "TrimEnd":
|
||
if (exp.Arguments.Count == 0)
|
||
{
|
||
if (exp.Method.Name == "Trim") return $"trim({left})";
|
||
if (exp.Method.Name == "TrimStart") return $"ltrim({left})";
|
||
if (exp.Method.Name == "TrimEnd") return $"rtrim({left})";
|
||
}
|
||
|
||
var trimArg1 = "";
|
||
var trimArg2 = "";
|
||
foreach (var argsTrim02 in exp.Arguments)
|
||
{
|
||
var argsTrim01s = new[] { argsTrim02 };
|
||
if (argsTrim02.NodeType == ExpressionType.NewArrayInit)
|
||
{
|
||
var arritem = argsTrim02 as NewArrayExpression;
|
||
argsTrim01s = arritem.Expressions.ToArray();
|
||
}
|
||
|
||
foreach (var argsTrim01 in argsTrim01s)
|
||
{
|
||
var trimChr = getExp(argsTrim01).Trim('\'');
|
||
if (trimChr.Length == 1) trimArg1 += trimChr;
|
||
else trimArg2 += $" || ({trimChr})";
|
||
}
|
||
}
|
||
|
||
if (exp.Method.Name == "Trim")
|
||
left = $"trim({left}, {_common.FormatSql("{0}", trimArg1)}{trimArg2})";
|
||
if (exp.Method.Name == "TrimStart")
|
||
left = $"ltrim({left}, {_common.FormatSql("{0}", trimArg1)}{trimArg2})";
|
||
if (exp.Method.Name == "TrimEnd")
|
||
left = $"rtrim({left}, {_common.FormatSql("{0}", trimArg1)}{trimArg2})";
|
||
return left;
|
||
case "Replace": return $"replace({left}, {getExp(exp.Arguments[0])}, {getExp(exp.Arguments[1])})";
|
||
case "CompareTo": return $"case when {left} = {getExp(exp.Arguments[0])} then 0 when {left} > {getExp(exp.Arguments[0])} then 1 else -1 end";
|
||
case "Equals": return $"({left} = cast({getExp(exp.Arguments[0])} as string))";
|
||
}
|
||
}
|
||
|
||
return null;
|
||
}
|
||
|
||
public override string ExpressionLambdaToSqlCallMath(MethodCallExpression exp, ExpTSC tsc)
|
||
{
|
||
Func<Expression, string> getExp = exparg => ExpressionLambdaToSql(exparg, tsc);
|
||
switch (exp.Method.Name)
|
||
{
|
||
case "Abs": return $"abs({getExp(exp.Arguments[0])})";
|
||
case "Sign": return $"sign({getExp(exp.Arguments[0])})";
|
||
case "Floor": return $"floor({getExp(exp.Arguments[0])})";
|
||
case "Ceiling": return $"ceiling({getExp(exp.Arguments[0])})";
|
||
case "Round":
|
||
if (exp.Arguments.Count > 1 && exp.Arguments[1].Type.FullName == "System.Int32")
|
||
return $"round({getExp(exp.Arguments[0])}, {getExp(exp.Arguments[1])})";
|
||
return $"round({getExp(exp.Arguments[0])})";
|
||
case "Exp": return $"exp({getExp(exp.Arguments[0])})";
|
||
case "Log": return $"log({getExp(exp.Arguments[0])})";
|
||
case "Log10": return $"log10({getExp(exp.Arguments[0])})";
|
||
case "Pow": return $"pow({getExp(exp.Arguments[0])}, {getExp(exp.Arguments[1])})";
|
||
case "Sqrt": return $"sqrt({getExp(exp.Arguments[0])})";
|
||
case "Cos": return $"cos({getExp(exp.Arguments[0])})";
|
||
case "Sin": return $"sin({getExp(exp.Arguments[0])})";
|
||
case "Tan": return $"tan({getExp(exp.Arguments[0])})";
|
||
case "Acos": return $"acos({getExp(exp.Arguments[0])})";
|
||
case "Asin": return $"asin({getExp(exp.Arguments[0])})";
|
||
case "Atan": return $"atan({getExp(exp.Arguments[0])})";
|
||
case "Atan2": return $"atan2({getExp(exp.Arguments[0])}, {getExp(exp.Arguments[1])})";
|
||
case "Truncate": return $"trunc({getExp(exp.Arguments[0])}, 0)";
|
||
}
|
||
|
||
return null;
|
||
}
|
||
|
||
public override string ExpressionLambdaToSqlCallDateTime(MethodCallExpression exp, ExpTSC tsc)
|
||
{
|
||
Func<Expression, string> getExp = exparg => ExpressionLambdaToSql(exparg, tsc);
|
||
if (exp.Object == null)
|
||
{
|
||
switch (exp.Method.Name)
|
||
{
|
||
case "Compare": return $"datediff('s',{getExp(exp.Arguments[0])},{getExp(exp.Arguments[1])})";
|
||
case "DaysInMonth": return $"days_in_month(to_date({getExp(exp.Arguments[0])} || '-' || {getExp(exp.Arguments[1])},'yyyy-MM'))";
|
||
case "Equals": return $"({getExp(exp.Arguments[0])} = {getExp(exp.Arguments[1])})";
|
||
case "IsLeapYear": return $"is_leap_year(to_date({getExp(exp.Arguments[0])},'yyyy'))";
|
||
case "Parse": return ExpressionConstDateTime(exp.Arguments[0]) ?? $"cast({getExp(exp.Arguments[0])} as timestamp)";
|
||
case "ParseExact":
|
||
case "TryParse":
|
||
case "TryParseExact": return ExpressionConstDateTime(exp.Arguments[0]) ?? $"cast({getExp(exp.Arguments[0])} as timestamp)";
|
||
}
|
||
}
|
||
else
|
||
{
|
||
var left = getExp(exp.Object);
|
||
var args1 = exp.Arguments.Count == 0 ? null : getExp(exp.Arguments[0]);
|
||
switch (exp.Method.Name)
|
||
{
|
||
case "Add": return $"dateadd('s',{args1},{left})";
|
||
case "AddDays": return $"dateadd('d',{args1},{left})";
|
||
case "AddHours": return $"dateadd('h',{args1},{left})";
|
||
case "AddMilliseconds": return $"dateadd('s',{args1}/1000,{left})";
|
||
case "AddMinutes": return $"dateadd('m',{args1},{left})";
|
||
case "AddMonths": return $"dateadd('M',{args1},{left})";
|
||
case "AddSeconds": return $"dateadd('s',{args1},{left})";
|
||
case "AddTicks": return $"dateadd('s',{args1}/10000000,{left})";
|
||
case "AddYears": return $"dateadd('y',{args1},{left})";
|
||
case "Subtract":
|
||
switch ((exp.Arguments[0].Type.IsNullableType() ? exp.Arguments[0].Type.GetGenericArguments().FirstOrDefault() : exp.Arguments[0].Type).FullName)
|
||
{
|
||
case "System.DateTime": return $"datediff('s',{args1},{left})";
|
||
case "System.TimeSpan": return $"dateadd('s',({args1})*-1,{left})";
|
||
}
|
||
break;
|
||
case "Equals": return $"({left} = cast({args1} as timestamp))";
|
||
case "CompareTo": return $"datediff('s',{args1},{left})";
|
||
case "ToString":
|
||
if (left.EndsWith(" as timestamp)") == false) left = $"cast({left} as datetime)";
|
||
if (exp.Arguments.Count == 0) return $"convert(varchar, {left}, 121)";
|
||
switch (args1.TrimStart('N'))
|
||
{
|
||
case "'yyyy-MM-dd HH:mm:ss'": return $"convert(char(19), {left}, 120)";
|
||
case "'yyyy-MM-dd HH:mm'": return $"substring(convert(char(19), {left}, 120), 1, 16)";
|
||
case "'yyyy-MM-dd HH'": return $"substring(convert(char(19), {left}, 120), 1, 13)";
|
||
case "'yyyy-MM-dd'": return $"convert(char(10), {left}, 23)";
|
||
case "'yyyy-MM'": return $"substring(convert(char(10), {left}, 23), 1, 7)";
|
||
case "'yyyyMMdd'": return $"convert(char(8), {left}, 112)";
|
||
case "'yyyyMM'": return $"substring(convert(char(8), {left}, 112), 1, 6)";
|
||
case "'yyyy'": return $"substring(convert(char(8), {left}, 112), 1, 4)";
|
||
case "'HH:mm:ss'": return $"convert(char(8), {left}, 24)";
|
||
}
|
||
var isMatched = false;
|
||
var nchar = args1.StartsWith("N'") ? "N" : "";
|
||
args1 = Regex.Replace(args1, "(yyyy|yy|MM|M|dd|d|HH|H|hh|h|mm|m|ss|s|tt|t)", m =>
|
||
{
|
||
isMatched = true;
|
||
switch (m.Groups[1].Value)
|
||
{
|
||
case "yyyy": return $"' + substring(convert(char(8), {left}, 112), 1, 4) + {nchar}'";
|
||
case "yy": return $"' + substring(convert(char(6), {left}, 12), 1, 2) + {nchar}'";
|
||
case "MM": return $"' + substring(convert(char(6), {left}, 12), 3, 2) + {nchar}'";
|
||
case "M": return $"' + case when substring(convert(char(6), {left}, 12), 3, 1) = '0' then substring(convert(char(6), {left}, 12), 4, 1) else substring(convert(char(6), {left}, 12), 3, 2) end + {nchar}'";
|
||
case "dd": return $"' + substring(convert(char(6), {left}, 12), 5, 2) + {nchar}'";
|
||
case "d": return $"' + case when substring(convert(char(6), {left}, 12), 5, 1) = '0' then substring(convert(char(6), {left}, 12), 6, 1) else substring(convert(char(6), {left}, 12), 5, 2) end + {nchar}'";
|
||
case "HH": return $"' + substring(convert(char(8), {left}, 24), 1, 2) + {nchar}'";
|
||
case "H": return $"' + case when substring(convert(char(8), {left}, 24), 1, 1) = '0' then substring(convert(char(8), {left}, 24), 2, 1) else substring(convert(char(8), {left}, 24), 1, 2) end + {nchar}'";
|
||
case "hh":
|
||
return $"' + case cast(case when substring(convert(char(8), {left}, 24), 1, 1) = '0' then substring(convert(char(8), {left}, 24), 2, 1) else substring(convert(char(8), {left}, 24), 1, 2) end as int) % 12" +
|
||
$"when 0 then '12' when 1 then '01' when 2 then '02' when 3 then '03' when 4 then '04' when 5 then '05' when 6 then '06' when 7 then '07' when 8 then '08' when 9 then '09' when 10 then '10' when 11 then '11' end + {nchar}'";
|
||
case "h":
|
||
return $"' + case cast(case when substring(convert(char(8), {left}, 24), 1, 1) = '0' then substring(convert(char(8), {left}, 24), 2, 1) else substring(convert(char(8), {left}, 24), 1, 2) end as int) % 12" +
|
||
$"when 0 then '12' when 1 then '1' when 2 then '2' when 3 then '3' when 4 then '4' when 5 then '5' when 6 then '6' when 7 then '7' when 8 then '8' when 9 then '9' when 10 then '10' when 11 then '11' end + {nchar}'";
|
||
case "mm": return $"' + substring(convert(char(8), {left}, 24), 4, 2) + {nchar}'";
|
||
case "m": return $"' + case when substring(convert(char(8), {left}, 24), 4, 1) = '0' then substring(convert(char(8), {left}, 24), 5, 1) else substring(convert(char(8), {left}, 24), 4, 2) end + {nchar}'";
|
||
case "ss": return $"' + substring(convert(char(8), {left}, 24), 7, 2) + {nchar}'";
|
||
case "s": return $"' + case when substring(convert(char(8), {left}, 24), 7, 1) = '0' then substring(convert(char(8), {left}, 24), 8, 1) else substring(convert(char(8), {left}, 24), 7, 2) end + {nchar}'";
|
||
case "tt": return $"' + case when cast(case when substring(convert(char(8), {left}, 24), 1, 1) = '0' then substring(convert(char(8), {left}, 24), 2, 1) else substring(convert(char(8), {left}, 24), 1, 2) end as int) >= 12 then 'PM' else 'AM' end + {nchar}'";
|
||
case "t": return $"' + case when cast(case when substring(convert(char(8), {left}, 24), 1, 1) = '0' then substring(convert(char(8), {left}, 24), 2, 1) else substring(convert(char(8), {left}, 24), 1, 2) end as int) >= 12 then 'P' else 'A' end + {nchar}'";
|
||
}
|
||
return m.Groups[0].Value;
|
||
});
|
||
return isMatched == false ? args1 : $"({args1})";
|
||
}
|
||
}
|
||
|
||
return null;
|
||
}
|
||
|
||
public override string ExpressionLambdaToSqlCallTimeSpan(MethodCallExpression exp, ExpTSC tsc)
|
||
{
|
||
Func<Expression, string> getExp = exparg => ExpressionLambdaToSql(exparg, tsc);
|
||
if (exp.Object == null)
|
||
{
|
||
switch (exp.Method.Name)
|
||
{
|
||
case "Compare": return $"({getExp(exp.Arguments[0])}-({getExp(exp.Arguments[1])}))";
|
||
case "Equals": return $"({getExp(exp.Arguments[0])} = {getExp(exp.Arguments[1])})";
|
||
case "FromDays": return $"(({getExp(exp.Arguments[0])})*{60 * 60 * 24})";
|
||
case "FromHours": return $"(({getExp(exp.Arguments[0])})*{60 * 60})";
|
||
case "FromMilliseconds": return $"(({getExp(exp.Arguments[0])})/1000)";
|
||
case "FromMinutes": return $"(({getExp(exp.Arguments[0])})*60)";
|
||
case "FromSeconds": return $"({getExp(exp.Arguments[0])})";
|
||
case "FromTicks": return $"(({getExp(exp.Arguments[0])})/10000000)";
|
||
case "Parse": return $"cast({getExp(exp.Arguments[0])} as long)";
|
||
case "ParseExact":
|
||
case "TryParse":
|
||
case "TryParseExact": return $"cast({getExp(exp.Arguments[0])} as long)";
|
||
}
|
||
}
|
||
else
|
||
{
|
||
var left = getExp(exp.Object);
|
||
var args1 = exp.Arguments.Count == 0 ? null : getExp(exp.Arguments[0]);
|
||
switch (exp.Method.Name)
|
||
{
|
||
case "Add": return $"({left}+{args1})";
|
||
case "Subtract": return $"({left}-({args1}))";
|
||
case "Equals": return $"({left} = {args1})";
|
||
case "CompareTo": return $"({left}-({args1}))";
|
||
case "ToString": return $"cast({left} as string)";
|
||
}
|
||
}
|
||
|
||
return null;
|
||
}
|
||
|
||
public override string ExpressionLambdaToSqlCallConvert(MethodCallExpression exp, ExpTSC tsc)
|
||
{
|
||
Func<Expression, string> getExp = exparg => ExpressionLambdaToSql(exparg, tsc);
|
||
if (exp.Object == null)
|
||
{
|
||
switch (exp.Method.Name)
|
||
{
|
||
case "ToBoolean": return $"(cast({getExp(exp.Arguments[0])} as string) not in ('0','false','f','no'))";
|
||
case "ToByte": return $"cast({getExp(exp.Arguments[0])} as byte)";
|
||
case "ToChar": return $"left(cast({getExp(exp.Arguments[0])} as string), 1)";
|
||
case "ToDateTime":
|
||
return ExpressionConstDateTime(exp.Arguments[0]) ?? $"cast({getExp(exp.Arguments[0])} as timestamp)";
|
||
case "ToDecimal": return $"cast({getExp(exp.Arguments[0])} as double)";
|
||
case "ToDouble": return $"cast({getExp(exp.Arguments[0])} as double)";
|
||
case "ToInt16": return $"cast({getExp(exp.Arguments[0])} as short)";
|
||
case "ToInt32": return $"cast({getExp(exp.Arguments[0])} as int)";
|
||
case "ToInt64": return $"cast({getExp(exp.Arguments[0])} as long)";
|
||
case "ToSByte": return $"cast({getExp(exp.Arguments[0])} as byte)";
|
||
case "ToSingle": return $"cast({getExp(exp.Arguments[0])} as int)";
|
||
case "ToString": return $"cast({getExp(exp.Arguments[0])} as string)";
|
||
case "ToUInt16": return $"cast({getExp(exp.Arguments[0])} as short)";
|
||
case "ToUInt32": return $"cast({getExp(exp.Arguments[0])} as int)";
|
||
case "ToUInt64": return $"cast({getExp(exp.Arguments[0])} as long)";
|
||
}
|
||
}
|
||
|
||
return null;
|
||
}
|
||
}
|
||
|
||
class QuestDbExpressionVisitor : ExpressionVisitor
|
||
{
|
||
private List<string> list = new List<string>();
|
||
|
||
protected override Expression VisitMember(MemberExpression node)
|
||
{
|
||
list.Add(node.Member.Name);
|
||
return node;
|
||
}
|
||
|
||
internal string Fields()
|
||
{
|
||
var fileds = string.Join(",", list);
|
||
list.Clear();
|
||
return fileds;
|
||
}
|
||
}
|
||
} |