Open stavris8894 opened 2 years ago
There is an issue with the CustomerIncidentsSummaryGrouper: IAggregateGrouper<Guid> class.
CustomerIncidentsSummaryGrouper: IAggregateGrouper<Guid>
The code:
var filteredEvents = events .Where(ev => eventTypes.Contains(ev.GetType())) .ToList();
returns an empty list.
events: {Marten.Events.Event<Helpdesk.Api.Incidents.IncidentResolved>}
{Marten.Events.Event<Helpdesk.Api.Incidents.IncidentResolved>}
eventTypes: ``
`` Seems that the Contains returns false.
I have create a PR #173 that solve this issue
There is an issue with the
CustomerIncidentsSummaryGrouper: IAggregateGrouper<Guid>
class.The code:
var filteredEvents = events .Where(ev => eventTypes.Contains(ev.GetType())) .ToList();
returns an empty list.
events:
{Marten.Events.Event<Helpdesk.Api.Incidents.IncidentResolved>}
eventTypes: ``
`` Seems that the Contains returns false.