Reporting in the CQRS/ES world
问题 I think I understand the idea of the read model in the context of ES + CQRS (please correct me if not). However, I still have a few doubts about using it in the context of ‘serious’ reporting. Let us say I use a relational db plus some ORM to crud my read models. One basic ‘summary stats read model’ could look like this: class SummaryStats1 { public Guid TypeId { get; set; } public string TypeName { get; set; } public Guid SubTypeId { get; set; } public string SubTypeName { get; set; } public