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