You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.0 KiB
46 lines
1.0 KiB
using System.Linq.Expressions;
|
|
|
|
namespace SqlSugar
|
|
{
|
|
public class SubSelect : ISubOperation
|
|
{
|
|
public string Name
|
|
{
|
|
get
|
|
{
|
|
return "Select";
|
|
}
|
|
}
|
|
|
|
public Expression Expression
|
|
{
|
|
get; set;
|
|
}
|
|
|
|
|
|
public int Sort
|
|
{
|
|
get
|
|
{
|
|
return 200;
|
|
}
|
|
}
|
|
|
|
public ExpressionContext Context
|
|
{
|
|
get;set;
|
|
}
|
|
|
|
public string GetValue(Expression expression = null)
|
|
{
|
|
var exp = expression as MethodCallExpression;
|
|
var entityType = (exp.Arguments[0] as LambdaExpression).Parameters[0].Type;
|
|
if (this.Context.InitMappingInfo != null)
|
|
{
|
|
this.Context.InitMappingInfo(entityType);
|
|
this.Context.RefreshMapping();
|
|
}
|
|
return SubTools.GetMethodValue(this.Context, exp.Arguments[0],ResolveExpressType.FieldSingle);
|
|
}
|
|
}
|
|
}
|