old_flsystem/类库/SqlSugar/ExpressionsToSql/Subquery/Items/ISubOperation.cs

19 lines
422 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.Linq.Expressions;
using System.Text;
namespace SqlSugar
{
public interface ISubOperation
{
ExpressionContext Context { get; set; }
string Name { get; }
string GetValue(Expression expression);
int Sort { get; }
Expression Expression { get; set; }
bool HasWhere { get; set; }
}
}