Send comments on this topic. |
|
QueryClauseMustBeginOnNewLineWhenPreviousClauseSpansMultipleLines |
|
CheckId |
SA1104 |
Category |
Readability Rules |
Cause
Rule Description
object x =
select a
in b.GetCustomers(
2, “x”) from c;
The query clause can correctly be written as:
object x =
select a
in b.GetCustomers(
2, “x”)
from c;
How to Fix Violations
© Microsoft Corporation. All Rights Reserved.