CQRS Pattern With C# (Part 1)
Understand CQRS pattern in a real world application
CQRS is the acronym for Command Query Responsibility Segregation. The core idea of this pattern is to separate Read and Update operations by using different models to handle the treatment. We use commands to update data, and queries to read data.