Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
3answers
589 views

How would one apply command query separation (CQS), when result data is needed from a command?

In wikipedia's definition of command query separation, it is stated that More formally, methods should return a value only if they are referentially transparent and hence possess no side ...
10
votes
3answers
1k views

CQRS and CRUD screens

One of the basic tenets of CQRS, as I understand it, is that commands should be behaviour-centric, and have a value in the business or the UL, and not data-centric, ie., CRUD. Instead of focusing on ...
7
votes
3answers
308 views

Abuse of Closures? Violations of various principles? Or ok?

Edit: fixed several syntax and consistency issues to make the code a little more apparent and close to what I actually am doing. I've got some code that looks like this: SomeClass someClass; var ...
5
votes
2answers
893 views

How To Implement The Query Side Of CQS in DDD?

I have implemented the command side of DDD using the domain model and repositories, but how do I implement the query side? Do I create an entirely new domain model for the UI, and where is this kept ...
4
votes
2answers
363 views

CQRS - Should a Command try to create a “complex” master-detail entity?

I've been reading Greg Young and Udi Dahan's thoughts on Command Query Responsibilty Separation and a lot of what I read strikes a chord with me. My domain (we track vehicles which are doing ...
3
votes
4answers
55 views

Python naming conventions for functions that do modify the object or return a modified copy

What would be the naming conventions in Python for functions that can return a modified object or that just modifies the instance. Let's assume you want to implement both, how you should name the ...
2
votes
4answers
213 views

In a CQRS system, how should I show the user that their request has been received?

I'm trying to decouple some of the bits of our big-ball-of-mud architecture, and identified several boundaries that are obvious candidates for using CQRS to provide a more resilient and scalable ...
1
vote
4answers
333 views

CQS and ASP.NET MVC Actions

Those who have read about CQS principle know that: CQS states that every method should either be a command that performs an action, or a query that returns data to the caller, but not both. ...
1
vote
1answer
65 views

Communicating Concurrency Conflicts to the Application Layer

When communicating concurrency conflicts to your application layer, is there an alternative to using exceptions that also respects the principle of Command-Query Separation, or are exceptions the best ...
0
votes
1answer
39 views

Can I break CQS to ensure less chatty web service interfaces?

I have a .NET WPF smart client calling a .NET WCF web service. The web service does most of the work and returns a small amount of information to the client. As such it's not entirely unlike a ...
0
votes
2answers
123 views

Good Data Tier Dev & Design: What are the common bad practises in data tier development?

I am currently researching the best practises (at a reasonably high level) for application design for highly maintainable systems which result in minimal friction to change. By "Data Tier" I mean ...