diff --git a/LiteCharms.Features.MidrandBooks/Products/ProductService.cs b/LiteCharms.Features.MidrandBooks/Products/ProductService.cs index d971623..15be23c 100644 --- a/LiteCharms.Features.MidrandBooks/Products/ProductService.cs +++ b/LiteCharms.Features.MidrandBooks/Products/ProductService.cs @@ -153,9 +153,7 @@ public sealed class ProductService(IDbContextFactory cont { await using var context = await contextFactory.CreateDbContextAsync(cancellationToken); - var query = context.Products - .Include(i => i.Price) - .AsQueryable(); + var query = context.Products.AsQueryable(); var cultureInfo = CultureInfo.InvariantCulture;