old_flsystem/类库/SqlSugar/ExpressionsToSql/Common/MethodCallExpressionModel.cs

21 lines
484 B
C#
Raw Permalink Normal View History

2022-09-20 03:10:29 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Linq.Expressions;
namespace SqlSugar
{
public class MethodCallExpressionModel
{
public List<MethodCallExpressionArgs> Args { get; set; }
}
public class MethodCallExpressionArgs
{
public bool IsMember { get; set; }
public object MemberName { get; set; }
public object MemberValue { get; set; }
}
}