We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 610f65a commit edf56d4Copy full SHA for edf56d4
example/Program.cs
@@ -81,11 +81,11 @@
81
{
82
var result = db.Users
83
.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)
+ .Include(x => x.Addresses)
+ .ThenInclude(x => x.City)
+ .Include(x => x.Manager)
+ .ThenInclude(x => x.Manager)
+ .Where(x => !x.IsDeleted)
89
.ProjectTo<UserDto>(mapper.ConfigurationProvider)
90
.Apply(query);
91
0 commit comments