Why are you not using MediatR like you have in past projects #12
-
I noticed you are not using MediatR... Do you plan on incorporating it latter? Is the Generic Repository Pattern better? I am just curious as to your reasoning. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I am planning to build a Generic Repository Pattern that has all the needed methods in the Service Layer. What are your thoughts? |
Beta Was this translation helpful? Give feedback.
I am planning to build a Generic Repository Pattern that has all the needed methods in the Service Layer.
At times, I really don't see the use of MediatR implementation. It increases the lines of code for even a simple CRUD implementation.
For a boilerplate, it's best to keep the options open.
That is, fullstackhero will support both the MediatR patterns as well as the Generic Repository pattern. From experience, developers prefer to use a Service Layer with a Powerful Repository Pattern. I am just experimenting with stuff to provide a Rapid Development Framework.
What are your thoughts?