Title | Query clause should follow previous clause |
TypeName | SA110xQueryClauses |
CheckId | SA1102 |
Category | Readability Rules |
A C# query clause does not begin on the same line as the previous clause, or on the next line.
A violation of this rule occurs when a clause within a query expression does not begin on the same line as the previous clause, or on the line after the query clause. For example:
object x = from num in numbers
select num;
The query clause can correctly be written as:
object x = from num in numbers select num;
or:
object x =
from num
in numbers
select num;
To fix a violation of this rule, ensure that each clause in the query expression begins on the same line as the previous clause, or on the following line.
#pragma warning disable SA1102 // Query clause should follow previous clause
object x = from num in numbers
select num;
#pragma warning restore SA1102 // Query clause should follow previous clause