diff --git a/LiteCharms.Features.MidrandBooks/Products/ProductService.cs b/LiteCharms.Features.MidrandBooks/Products/ProductService.cs index 15be23c..de96fd8 100644 --- a/LiteCharms.Features.MidrandBooks/Products/ProductService.cs +++ b/LiteCharms.Features.MidrandBooks/Products/ProductService.cs @@ -304,8 +304,7 @@ public sealed class ProductService(IDbContextFactory cont { await using var context = await contextFactory.CreateDbContextAsync(cancellationToken); - var product = await context.Products - .Include(i => i.Price) + var product = await context.Products .AsNoTracking().FirstOrDefaultAsync(p => p.Id == productId, cancellationToken); return product is null