Compare commits

...

2 Commits

Author SHA1 Message Date
khwezi ee6beef603 Merge pull request 'Redacted Product.Price mapping on filter' (#50) from midrandshop into master
Reviewed-on: #50
2026-05-30 18:49:38 +02:00
Khwezi Mngoma 4f6dbfcd37 Redacted Product.Price mapping on filter
continuous-integration/drone/pr Build is passing
2026-05-30 18:49:15 +02:00
@@ -153,9 +153,7 @@ public sealed class ProductService(IDbContextFactory<MidrandBooksDbContext> 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;