-
-
Notifications
You must be signed in to change notification settings - Fork 146
Open
Milestone
Description
Using the latest 0.26.7 that reverted #1010, there are some inconsistencies in the intentation when it starts with multiple fields
Input:
var result = myContext.MyDbSet.Where(x => x.IsOK).Select(x => x.Property).ToList();Output:
var result = myContext
.MyDbSet.Where(x => x.IsOK)
.Select(x => x.Property)
.ToList();Expected behavior:
var result = myContext.MyDbSet
.Where(x => x.IsOK)
.Select(x => x.Property)
.ToList();or
var result = myContext.MyDbSet.Where(x => x.IsOK)
.Select(x => x.Property)
.ToList();Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels