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
Product and Version Used: 4.1.0
Steps to Reproduce:
roslynator_null_check_style = pattern_matching dotnet_diagnostic.RCS1248.severity = suggestion # "Normalize null check"
Actual Behavior:
var users = dbContext.Users .Where(user => user.Address != null) // <-- RCS1248 triggers here .ToList();
(using Queryable.Where)
Expected Behavior: RCS1248 doesn't trigger when used in expression tree.
The text was updated successfully, but these errors were encountered:
54c9b66
Do not suggest pattern matching in expression tree (fix dotnet#901) (…
638c839
…RCS1248)
josefpihrt
No branches or pull requests
Product and Version Used:
4.1.0
Steps to Reproduce:
Actual Behavior:
(using Queryable.Where)
Expected Behavior:
RCS1248 doesn't trigger when used in expression tree.
The text was updated successfully, but these errors were encountered: