Skip to content

Commit

Permalink
- 增加 vb.net Lambda 解析;
Browse files Browse the repository at this point in the history
  • Loading branch information
2881099 committed May 7, 2024
1 parent daf1fa0 commit 0926a04
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions FreeSql/Internal/CommonExpression.cs
Original file line number Diff line number Diff line change
Expand Up @@ -703,6 +703,9 @@ public string[] ExpressionSelectColumns_MemberAccess_New_NewArrayInit(List<Selec
{ ExpressionType.Divide, "/" },
{ ExpressionType.Modulo, "%" },
{ ExpressionType.Equal, "=" },
{ ExpressionType.AddChecked, "+" },
{ ExpressionType.SubtractChecked, "-" },
{ ExpressionType.MultiplyChecked, "*" },
};

public string ExpressionWhereLambdaNoneForeignObject(List<SelectTableInfo> _tables, Func<Type, string, string> _tableRule, TableInfo table, List<SelectColumnInfo> _selectColumnMap, Expression exp, BaseDiyMemberExpression diymemexp, List<DbParameter> dbParams)
Expand Down

1 comment on commit 0926a04

@liupenglai
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's getting more and more perfect, it's great, come on

Please sign in to comment.