50 lines
1.2 KiB
C#
50 lines
1.2 KiB
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Linq.Expressions;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace SqlSugar
|
|||
|
{
|
|||
|
public class SubAnd:ISubOperation
|
|||
|
{
|
|||
|
public string Name
|
|||
|
{
|
|||
|
get { return "And"; }
|
|||
|
}
|
|||
|
|
|||
|
public Expression Expression
|
|||
|
{
|
|||
|
get; set;
|
|||
|
}
|
|||
|
|
|||
|
public int Sort
|
|||
|
{
|
|||
|
get
|
|||
|
{
|
|||
|
return 401;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
public ExpressionContext Context
|
|||
|
{
|
|||
|
get;set;
|
|||
|
}
|
|||
|
|
|||
|
public bool HasWhere
|
|||
|
{
|
|||
|
get; set;
|
|||
|
}
|
|||
|
|
|||
|
public string GetValue(Expression expression)
|
|||
|
{
|
|||
|
var exp = expression as MethodCallExpression;
|
|||
|
var argExp = exp.Arguments[0];
|
|||
|
var result = "AND " + SubTools.GetMethodValue(this.Context, argExp, ResolveExpressType.WhereMultiple);
|
|||
|
var selfParameterName = this.Context.GetTranslationColumnName((argExp as LambdaExpression).Parameters.First().Name) + UtilConstants.Dot;
|
|||
|
result = result.Replace(selfParameterName, SubTools.GetSubReplace(this.Context));
|
|||
|
return result;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|