How to get resharper to format my linq queries in a certain style?
I want this:
enumerableList.Where(x=> x.Some == "Thing" && x.Foo != baz && x.Whatever.IsNull());
Formatted like:
enumerableList.Where(x=> x.Some == "Thing" && x.Foo != baz && x.Whatever.IsNull() );
So every expression on its own line. (Or simpler, break before x. or break after &&) Or any style really that is not everything on a single line in a where lambda.
0 comments:
Post a Comment