Simon Klinkert
Results
12
comments of
Simon Klinkert
Hey @tomflenner! Great question. Currently, go-ddd doesn't implement event handling, but here's the idiomatic Go approach I'd recommend: - Domain entities stay pure - no event collections on entities, they...
Hi @SeaRoll, my 2 cents: The application layer should begin the transaction (as early as possible) as it coordinates the workflow of domain operations. Example (untested): ```go func (s *Service)...