AsNoTracking vs AsNoTrackingWithIdentityResolution in EF Core 11: which should you use?
Use AsNoTracking for read-only queries by default. Reach for AsNoTrackingWithIdentityResolution only when the result graph contains the same entity more than once and your code depends on getting a single shared instance back.