Skip to content

Instantly share code, notes, and snippets.

@dcomartin
Created March 5, 2020 02:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dcomartin/7a6245f9e99262540af29ddded4f4ae8 to your computer and use it in GitHub Desktop.
Save dcomartin/7a6245f9e99262540af29ddded4f4ae8 to your computer and use it in GitHub Desktop.
using System;
using MediatR;
using System.Collections.Generic;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
using Microsoft.EntityFrameworkCore;
using Microsoft.eShopWeb.Infrastructure.Data;
namespace Microsoft.eShopWeb.Web.Features.MyOrders
{
public class GetMyOrdersHandler : IRequestHandler<GetMyOrders, MyOrdersViewModel>
{
private readonly CatalogContext _db;
public GetMyOrdersHandler(CatalogContext db)
{
_db = db;
}
public async Task<MyOrdersViewModel> Handle(GetMyOrders request, CancellationToken cancellationToken)
{
var result = new MyOrdersViewModel();
result.Orders = await _db.OrderSummaries
.Where(x => x.BuyerId == request.UserName)
.Select(o => new OrderSummaryViewModel
{
OrderDate = o.OrderDate,
OrderNumber = o.Id,
Total = o.Total,
})
.ToArrayAsync(cancellationToken: cancellationToken);
return result;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment