Hi
I'm having a project where I'm using nhibernate as orm in my repositories. But after some CQRS reading I want to try and "copy" some of my data to other tabels for view quering/reporting. Meaning when for instance a new customer is created, I would like some of the customer and company information copied to another table, using some joins, just for the purpose of quering them later without having to join and traverse all the way through some different DTO's and other layers, see CQRS :)
Now the issue is how I should implement this? I could make som StoredProcedure syncCustomer to call after my Create Customer is done but is this the way to go?
How could I else do this?