I read the discussion Should CQRS Command perform a Query?
But I don't understand in which database the query is performed, because I have two distinct databases (one- one for readreads (queries) and one for commandwrites (commands).
If I need to take the customer info, I need to read from the Write Database? Is this way correct?
I I think yes because if I read from the Read Database, I need to inject the reference to ReadModel and ReadDatabase and I loose the SEGREGATION, right?