mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-10-15 18:55:07 +08:00
76 lines
2.1 KiB
C#
76 lines
2.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Linq.Expressions;
|
|
using System.Text;
|
|
|
|
namespace SqlSugar
|
|
{
|
|
public class SubGroupBy : ISubOperation
|
|
{
|
|
public bool HasWhere
|
|
{
|
|
get; set;
|
|
}
|
|
|
|
public string Name
|
|
{
|
|
get { return "GroupBy"; }
|
|
}
|
|
|
|
public Expression Expression
|
|
{
|
|
get; set;
|
|
}
|
|
|
|
public int Sort
|
|
{
|
|
get
|
|
{
|
|
return 479;
|
|
}
|
|
}
|
|
|
|
public ExpressionContext Context
|
|
{
|
|
get; set;
|
|
}
|
|
|
|
public string GetValue(Expression expression)
|
|
{
|
|
var exp = expression as MethodCallExpression;
|
|
var argExp = exp.Arguments[0];
|
|
var type = ResolveExpressType.FieldSingle;
|
|
if ((argExp as LambdaExpression).Body is NewExpression) {
|
|
type = ResolveExpressType.ArraySingle;
|
|
}
|
|
var result = "GROUP BY ";
|
|
if (this.Context.JoinIndex == 0)
|
|
{
|
|
result = result + SubTools.GetMethodValue(this.Context, argExp, type);
|
|
}
|
|
else
|
|
{
|
|
if (type == ResolveExpressType.ArraySingle)
|
|
{
|
|
type= ResolveExpressType.ArrayMultiple;
|
|
}
|
|
else if (type == ResolveExpressType.FieldSingle)
|
|
{
|
|
type = ResolveExpressType.FieldMultiple;
|
|
}
|
|
else if (type == ResolveExpressType.WhereSingle)
|
|
{
|
|
type = ResolveExpressType.WhereMultiple;
|
|
}
|
|
result = result + SubTools.GetMethodValueSubJoin(this.Context, argExp, type);
|
|
}
|
|
result = result.TrimEnd(',');
|
|
var selfParameterName = this.Context.GetTranslationColumnName((argExp as LambdaExpression).Parameters.First().Name) + UtilConstants.Dot;
|
|
if (this.Context.JoinIndex == 0)
|
|
result = result.Replace(selfParameterName, SubTools.GetSubReplace(this.Context));
|
|
return result;
|
|
}
|
|
}
|
|
}
|