python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
How Implement CRQS in DDD
If someone tries to implement the CQRS pattern without repository in DDD, in which layer should it be done? Infrastructure or Application Layer?
Mamink
Votes: 0
Answers: 1
Can I use type of domain layer entities in presentation layer?
Presentation layer call a method (CreateEvent) in my application layer. This method use generic parameters :
public async Task<string> CreateEvent<T, TDocument>(T @event)
where T : class
...
Julien Martin
Votes: 0
Answers: 2
DDD: choose relationship or only id reference with JPA/Hibernate
Here is a situation makes me quite confusing.
I have two tables: users and articles. One user can write multiple articles and one article can only have one author. From this business. I have two entit...
aisensiy
Votes: 0
Answers: 2
Notification System - dual writes problem
Example scenario:
New user is created within a group (we need to ensure their email is unique etc.).
We'd like to send an event UserCreated (via PubSub/Kafka/RabbitMQ) in order to trigger some additio...
yagineko
Votes: 0
Answers: 2