How to Command Query Responsibility Segregation (CQRS) with ASP.NET MVC?
        Posted  
        
            by Jeffrey
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Jeffrey
        
        
        
        Published on 2010-03-08T11:38:58Z
        Indexed on 
            2010/03/09
            6:36 UTC
        
        
        Read the original article
        Hit count: 351
        
I have been reading about Command Query Responsibility Segregation (CQRS). I sort of wonder how would this work with ASP.NET MVC? I get the idea of CQRS conceptually it sounds nice and sure does introduce some complexities (event and messaging pattern) compared to the "normal/common" approach . Also the idea of CQRS sort of against the use of ORM in some ways. I am trying to think how I could use this pattern in the coming projects so if anyone has experience in combining CQRS with ASP.NET MVC and NHibernate please give some concrete examples to help me better understand CQRS and use with ASP.NET MVC. Thanks!
© Stack Overflow or respective owner