mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-08-05 15:52:25 +08:00
@ -92,12 +92,15 @@ namespace FreeSql.Aop
|
||||
#region ParseExpression
|
||||
public class ParseExpressionEventArgs : EventArgs
|
||||
{
|
||||
public ParseExpressionEventArgs(Expression expression, Func<Expression, string> freeParse)
|
||||
public ParseExpressionEventArgs(Expression expression, Func<Expression, string> freeParse, List<SelectTableInfo> tables)
|
||||
{
|
||||
this.Expression = expression;
|
||||
this.FreeParse = freeParse;
|
||||
this.Tables = tables;
|
||||
}
|
||||
|
||||
public List<SelectTableInfo> Tables { get; }
|
||||
|
||||
/// <summary>
|
||||
/// 内置解析功能,可辅助您进行解析
|
||||
/// </summary>
|
||||
|
Reference in New Issue
Block a user