You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This analyzer reports when a query (LINQ expression) can be changed into a single method call.
169
169
170
170
### [AV2230](https://github.com/dennisdoomen/CSharpGuidelines/blob/1a90b74c95225a0f7e4d0e7a341fd027e17c2320/_pages/2200_FrameworkGuidelines.md#av2230): Only use the `dynamic` keyword when talking to a dynamic object 
Copy file name to clipboardExpand all lines: src/CSharpGuidelinesAnalyzer/CSharpGuidelinesAnalyzer/Rules/Framework/AvoidQuerySyntaxForSimpleExpressionAnalyzer.cs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ public sealed class AvoidQuerySyntaxForSimpleExpressionAnalyzer : DiagnosticAnal
16
16
17
17
privateconststringTitle="Simple query should be replaced by extension method call";
18
18
privateconststringMessageFormat="Simple query should be replaced by extension method call.";
19
-
privateconststringDescription="Avoid LINQ for simple expressions.";
19
+
privateconststringDescription="Avoid LINQ query syntax for simple expressions.";
0 commit comments