Skip to content

Commit edf56d4

Browse files
committed
format
1 parent 610f65a commit edf56d4

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

example/Program.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -81,11 +81,11 @@
8181
{
8282
var result = db.Users
8383
.Include(x => x.Company)
84-
.Include(x => x.Addresses)
85-
.ThenInclude(x => x.City)
86-
.Include(x => x.Manager)
87-
.ThenInclude(x => x.Manager)
88-
.Where(x => !x.IsDeleted)
84+
.Include(x => x.Addresses)
85+
.ThenInclude(x => x.City)
86+
.Include(x => x.Manager)
87+
.ThenInclude(x => x.Manager)
88+
.Where(x => !x.IsDeleted)
8989
.ProjectTo<UserDto>(mapper.ConfigurationProvider)
9090
.Apply(query);
9191

0 commit comments

Comments
 (0)