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.
 
 
 
 
 

13 lines
300 B

using System.Linq.Expressions;
namespace SqlSugar
{
public interface ISubOperation
{
ExpressionContext Context { get; set; }
string Name { get; }
string GetValue(Expression expression);
int Sort { get; }
Expression Expression { get; set; }
}
}