Results 260 comments of webDEVILopers

The reason I originally liked the Version **2** was an example of the red book by @VaughnVernon: ```java public Discussion startDiscussionFor( ForumIdentityService aForumIdentityService, Author anAuthor, String aSubject, String anExclusiveOwner) {...

Normally we add value objects and asserts to our commands. So we thought about extending the try-catch-block to catch the exceptions: * https://gist.github.com/webdevilopers/e2263debd573c90b51ab18702c3db4c9 But now we are thinking of moving...

We decided to make our Command DTOs (aka Symfony Form data classes) using primitives only again. The creation of value objects was moved to the Command Handler. Every value object...

I think if an aggregate grows it is fine to add some subdirectories e.g. for `Event`s and `Exception`s like this @prooph example: - https://github.com/prooph/proophessor-do-symfony/tree/master/src/ProophessorDo/Model/Todo But in any way I find...

Recently I watched "Event Sourcing: the good, the bad and the complicated" by @Ocramius: * https://www.youtube.com/watch?v=8NuHNtwjync At some point he states that "Command"s belong in to the Domain Layer. I...

Recently @vkhorikov posted a new interesting post about "Commands in Domain Layer": * https://enterprisecraftsmanship.com/2019/01/31/cqrs-commands-part-domain-model/ Just my two cents: Currently our Commands share the Service namespace in our Application Layer. Though...

Thanks @matthiasnoback for your feedback! I havn't checked it yet but I think there is another downside of the @symfony event dispatcher since it only allows passing a single object...

I saw your example how to inject the `event_recorder` into your Application Handler here @matthiasnoback : * http://simplebus.github.io/SymfonyBridge/doc/event_bus_bundle.html But as mentioned I didn't understand how / where to put my...

Related: * https://github.com/SimpleBus/MessageBus/issues/18 @mseshachalam