From 85b65753c95b5ebf15c3ab75169e92a1b970a9d3 Mon Sep 17 00:00:00 2001 From: Cesar De la Torre Date: Thu, 23 Mar 2017 14:45:57 -0700 Subject: [PATCH] Minor update --- .../Ordering/Ordering.Infrastructure/OrderingContext.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Services/Ordering/Ordering.Infrastructure/OrderingContext.cs b/src/Services/Ordering/Ordering.Infrastructure/OrderingContext.cs index b74c7631d..dcf7c54e9 100644 --- a/src/Services/Ordering/Ordering.Infrastructure/OrderingContext.cs +++ b/src/Services/Ordering/Ordering.Infrastructure/OrderingContext.cs @@ -246,7 +246,8 @@ namespace Microsoft.eShopOnContainers.Services.Ordering.Infrastructure await _mediator.DispatchDomainEventsAsync(this); - // After executing this line all the changes performed thought the DbContext will be commited + // After executing this line all the changes (from the Command Handler and Domain Event Handlers) + // performed thought the DbContext will be commited var result = await base.SaveChangesAsync(); return result;