SA1102 - Visual-Stylecop/Visual-StyleCop GitHub Wiki
<title>SA1102: QueryClauseMustFollowPreviousClause</title>
<script src="script/helpstudio.js" type="text/javascript"></script>
<script src="script/StandardText.js" type="text/jscript"></script>
<script type="text/jscript">WritePageTop(document.title);</script>
TypeName |
QueryClauseMustFollowPreviousClause |
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 = select a in b
from c;
The query clause can correctly be written as:
object x = select a in b from c;
or:
object x =
select a
in b
from c;
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.
[SuppressMessage("StyleCop.CSharp.ReadabilityRules", "SA1102:QueryClauseMustFollowPreviousClause", Justification = "Reviewed.")]