We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
工程:Kogel.Dapper.Extension.Mssql 文件:BaseExpressionVisitor.cs 代码行数:517 protected override Expression VisitConstant(ConstantExpression node) if (FieldName != null) 这个判断有问题。对于u=>true这样的lambda表达式解析错误。
对于FieldName的判断要改成 if(!string.IsNullOrEmpty(FieldName)) 才能正常。
The text was updated successfully, but these errors were encountered:
No branches or pull requests
工程:Kogel.Dapper.Extension.Mssql
文件:BaseExpressionVisitor.cs
代码行数:517
protected override Expression VisitConstant(ConstantExpression node)
if (FieldName != null)
这个判断有问题。对于u=>true这样的lambda表达式解析错误。
对于FieldName的判断要改成
if(!string.IsNullOrEmpty(FieldName))
才能正常。
The text was updated successfully, but these errors were encountered: