Want to master Clean Architecture? Go here: bit.ly/3PupkOJ Want to unlock Modular Monoliths? Go here: bit.ly/3SXlzSt
@bondymagnomous35445 ай бұрын
Finally a video about this topic that actually makes sense and not a 20 minutes long time-waste.
@MilanJovanovicTech5 ай бұрын
Glad you enjoyed it 😁
@hadimazareei45368 ай бұрын
Thank you dear Milan. question about Models: 1- In [CommandHandlers] & [QueryHandlers] we have [Request Class] which is inherited from [IRequest]. 2- [Commands & Queries] class play a role like DTO which are used by handler class as input parameter. 3- [Queries] return a model and generally shall be different from [Domain] classes. If it is identical to [Domain] class, we create similar class (DTO) but don't expose domain class to upper layer. 4- So far, we have classes (Like Model) for commands (input) & queries (input) & DTO (output). 5- Item 1~4 can be used in API project and API project can be execute in server. 6- But, Client is a different project (WebApplication/WindowsForm/Android/…) and for sending/receiving data to/from API we need to have [Input Model] for command & query and get data in DTO format. Question: As mentioned above, is it suggested to define new command/query/DTO classes in different project (Not in Application/Infrastructure layers) to reference them to [Client] project so, we do not have to create extra and identical classes? Is it accepted? To clarify my previous question: Is it possible to create [Model] class (input and output) in separate class library and reference them to all other projects? In this way, [Command] class can inherit from [DTO+IRequest] together.
@MilanJovanovicTech7 ай бұрын
I end up just exposing a Request/Response object for the API layer. And then use Command/Query internally.
@Paul-uo9sv8 ай бұрын
thanks, even for Senior devs, this is a great refresher
@MilanJovanovicTech8 ай бұрын
The fundamentals always apply
@ianisoprian81874 ай бұрын
Very good examples and great advice for good practices! You are a great teacher
@MilanJovanovicTech4 ай бұрын
Glad it was helpful!
@mikeutube78887 ай бұрын
simply the best! simple and to the point. Thank you
@MilanJovanovicTech7 ай бұрын
You're welcome!
@adriencbl4 ай бұрын
Amazing content, thank you for this playlist about Clean Architecture, DDD and related topic
@MilanJovanovicTech4 ай бұрын
Glad you liked it!
@m5s108 ай бұрын
Very nice, like always. I'd agree with (at least one) comment that I saw asking for a mini app that implements all of this, because theory is nice, but seeing it actually in practice is even better. It doesn't have to have cqrs with mediatr or use a real db nor be a web app. It can just be a simple console app that fetches some data from in memory database. For example a library where you can list all the books or all the authors, you can add or remove books and/or authors. You can have some business rules like a book can't have more than 2 authors... I think it'd benefit the community a lot :)
@MilanJovanovicTech8 ай бұрын
I have at least three (that I can think of) series of implementing a CA project from scratch 😅 I can't fit that into one video, so I break it down into many separate lessons.
@DanielTila8 ай бұрын
I build a real SaaS platform using these patterns: kzbin.info/www/bejne/sKayqK2MjNWibqs Feel free to question everything is happening there
@m5s107 ай бұрын
@@MilanJovanovicTech Fair enough, my bad then. I watch a lot of your clips, but I don't keep tabs what I've seen on your channel, what on some others :)
@whatinthebloodyhell7 ай бұрын
Thanks for this, Milan. Your content is always top-notch.
@MilanJovanovicTech7 ай бұрын
Most welcome!
@sunzhang-d9v8 ай бұрын
Looking forward to talking more about the modular monolithic architecture
@MilanJovanovicTech8 ай бұрын
More videos are already scheduled :)
@sunzhang-d9v8 ай бұрын
@@MilanJovanovicTech 🤩😙
@Tamer_Ali24 күн бұрын
Thanks Milan I have a question about file upload, Is it ok if used IFormFile in Application project as a parameter in the IRequest class/record public record CreateArticleRequest(string Title, string Content, IFormFile ThumbnailImage) : IRequest; or create a custom class and map IFormFile to it in the controller public record CreateArticleRequest(string Title, string Content, FileUploader ThumbnailImage) : IRequest; public async Task CreateArticle([FromForm]CreateArticleRequest command,[FromForm] IFormFile formFile) { command.FileUpoader = formFile.MapToFileUploader(); //... } or you have a better approach ?
@MilanJovanovicTech24 күн бұрын
I think just passing down the IFormFile is fine. But this means you'd only be able to send this request in an ASPNET request (I think?). Not sure how to construct an IFormFile manually, is what I'm saying. An alternative is mapping the contents of the file, before processing it: name, bytes, size, content type.
@saddamhossaindotnet7 ай бұрын
An excellent explanation about clean architecture. 🙂
@MilanJovanovicTech7 ай бұрын
Glad you liked it!
@akashrokade122 ай бұрын
Hi Milan, i watch your content from a long time and also like it. I have a request can you try to keep content as beginner friendly so that if we share videos to someone, even if he has no context he can learn it easily and quickly
@MilanJovanovicTech2 ай бұрын
That depends on the video
@Mig4408 ай бұрын
I might be even more opinionated around what is allowed in the application layer, since I mostly like the functional core imperative shell version of clean architecture. That means that no side effect/ I/O is allowed when invoking methods outside the outer layers. Since I/O means unpredictability in the business logic this must be done carefully, since business logic should not depend on side effects while the outer shell can do so 👍
@MilanJovanovicTech8 ай бұрын
So your use case can't have any I/O?
@Mig4408 ай бұрын
@@MilanJovanovicTech The use case may have I/O but it can only do so at the edges of the system. This means that the orchestration of the domain is not allowed to do I/O even through an interface, since that only masks the I/O. I/O introduces indeterminism and should therefore be avoided when making returning a result, which is all that business logic should ideally be doing. Any action you take as a consequence of that result is not the concern of the business logic but at a higher level of a use-case if you will. In this way you separate results from actions, so that the same logic can be used to take different actions depending on the context of the use-case.
@KemTech17 ай бұрын
Thank you for this video. I have bin trying to find out where the API should go in clean Architecture but no one was giving a straight forward answer has you did here. I just have one more thing for you to clear up. The UI(Angular,React,Blazor) should this also go in the Presentation layer?
@MilanJovanovicTech7 ай бұрын
The client (UI) is usually a separate application - but in general, yes
@KemTech17 ай бұрын
@@MilanJovanovicTech thanks for clearing this up for me.
@andergarcia11158 ай бұрын
I'm truly fascinated by this topic, thanks to your excellent explanation. I aspire to reach your level of knowledge in the future.
@MilanJovanovicTech8 ай бұрын
Wow, thank you! Are you using Clean Architecture in your projects?
@andergarcia11158 ай бұрын
@@MilanJovanovicTech With the help of your videos, I've definitely improved! However, I'm still a beginner, currently learning about ASP NET project types
@vietquang66038 ай бұрын
Hi Milan, I'm learning about EF core. But I don't know what is default loading in EF core, can you explain me about this?
@MilanJovanovicTech7 ай бұрын
I'd always refer to the docs if you have a basic EF question
@AhadKhan-i6n2 ай бұрын
Could you make any quick step by step guide for mid level developer for better understand this idea without CQS or with repository unit of work and services DP..
@MilanJovanovicTech2 ай бұрын
Probably
@stasnocap8 ай бұрын
Hi Milan! I have a question for you. Let's say I have clustered postgresql server (1 - write node, 3 - read only access nodes). What would be my best strategy to implement some sort of load balancing on my database? Well I can do some custom singleton service which can provide me always next connection string, but will it be ok? I believe there is a better solution somewhere. Btw, I am using EF core
@MilanJovanovicTech7 ай бұрын
Isn't there a Postgres client library that can take care of that? 🤔
@ahmedh24828 ай бұрын
as always.. you are awesome, I wrote the following message before seeing the end of your video, { Is there any chance that we can see you create a mini system of your choice to show for your follow how the systems build in real world, how we should implement design principles, design patterns in the real world, how we do that after analysing the idea, how we convert it to diagram maybe, or to tasks using agile.. scrum or kanban, how to manage git effectively, how to publish it to azure or aws.. I know it's alot, if you'd like to do that.. make it on a paid platform and I'm sure most of your followers will participate } I wrote that before seeing the end of your video 😂 I hope two things about your course, first it's starting from scratch or let us say for bignner not for the people how have master degree as you do here in KZbin, second it's convert the subjects that I mentioned above. thanks alot
@MilanJovanovicTech8 ай бұрын
- Check out some of the playlists I have. It's hours of videos building a CA project from scratch (Gatherly, eShop, Runtrackr) - I have another video touching on Azure deployment also (kzbin.info/www/bejne/h4GToZxtrcplatU) - For the course, take a look at the full Curriculum and some preview chapters.
@DanielTila8 ай бұрын
I build a real SaaS platform using these patterns: kzbin.info/www/bejne/sKayqK2MjNWibqs Feel free to question everything is happening there
@ayanmitra20087 ай бұрын
Very good explanation
@MilanJovanovicTech7 ай бұрын
Thanks a lot!
@codeme80168 ай бұрын
Please no offense, The issue with all your CA videos (at least for me) is that in all of them you either don't show an actual project or even when you do, you never show the folders/files structures or hierarchies. I've watched many of your videos yet couldn't figure out how to setup even a basic CA project. Suggestion: 1- Create a new .NET project 2- Create the needed folders 3- Place each file to its relative folder. e.g. Controller, Repo, Entity/Model, Dto, Db, etc. 4- Explain how they are connected and related to each other. If I would rank C# KZbin videos based on being practical and helpful: #1 kudvenkat (the best) #2 IAmTimCorey #2 You #3 Nick Chapsas (the worst) I hope it helps you improve your contents. To be honest some of your videos are just great I have to add that. Best regards.
@MilanJovanovicTech8 ай бұрын
Look at it from a creator's perspective. There are a few issues I'm faced with. Let's say I want my videos to be 15-20 minutes long. This is long enough to pack some helpful info inside but not so long that it becomes boring. And there lies the problem. So, I must sacrifice something to fit the format I want to produce. Most of the time, I end up assuming the viewer has some prior experience with a certain topic or is a more experienced developer. With that in mind, I assume the viewer should be able to follow most of the videos and take away the key points I want to convey. Sometimes, I succeed, and sometimes, I don't. I'm not perfect. My second point is about having time to produce good content. I sacrificed the quality in the past few weeks (and a few incoming weeks) to have time to work on my new Modular Monolith course. Which is almost ready for release. This means I'll have more time to focus on creating quality content, and I'm excited about it. :)
@codeme80168 ай бұрын
@@MilanJovanovicTech That's beautiful. I absolutely admire you for creating these contents along with your own crouse works at the same time. Your last paragraph is actually very motivating ❤️. I see you have many CA videos. Maybe if the first videos were a bit more fundamental then building up from there in the next short videos would help us a bit more. Most people like me who look for a tutorial on KZbin usually don't know much about the particular subject, otherwise, we'd go for Stackoverflow, Gemini, ChatGPT etc. Every time you upload a CA video I open it hoping this one is gonna show me how to do it 😂 and I've been failing over and over so far. Thanks for sharing your viewpoint and situation. Good luck with your new courses. 🍻
@ЮраКосенко-е9е8 ай бұрын
Thanks! Repository abstraction, in my opinion, should be at the application layer. It has nothing to do with the core business logic
@MilanJovanovicTech8 ай бұрын
Your opinion vs mine 😁 At the end of the day, it's just an opinion. What matters is working software.
@kennethcanet16334 ай бұрын
@@MilanJovanovicTech Hi, just curios why did you put the repository abstraction in the domain layer?
@RaZziaN18 ай бұрын
I've followed all your videos about hexagonal, clean architecture, DDD, layered and adapters and ports. And at this point i have no idea what it supposed to be, same on linkedin. You are mixing and overconfusing tons of stuff or im not experienced enough which is which at this point.
@MilanJovanovicTech8 ай бұрын
I never talked about hexagonal, though. Can you explain which part is causing you confusion?
@ronnythedev8 ай бұрын
I disagree. I think Milan has put together a very clear architecture. Every layer is focused only on one area of the system. E.g: Domain does only one thing and is loosely coupled from other layers. I've been in this for over 20 years, and I've seen many attempts to put together a good architecture. Milan's is one of the best, mixing structure with pragmatism and following all SOLID principles.
@codeme80168 ай бұрын
@@ronnythedev The issue seems to be "You're being in it for over 20 years". A different standpoint.
@can92oz7 ай бұрын
Thank you for providing valuable information in the .NET environment, Milan. I've been following you for some time now, but I'm in need of a mentor in Java. Do you happen to know anyone who could help?
@MilanJovanovicTech7 ай бұрын
No, sadly I don't follow any Java devs (they can't C#)
@sunzhang-d9v8 ай бұрын
what is Orchestrates the Domain
@MilanJovanovicTech8 ай бұрын
= Tell it what to do
@dputra7 ай бұрын
Seems like clean architecture isn't very popular outside the OOP languages like C# and Java. I've been transitioning to python the last few months and I can't seem to find a good clean architecture examples. Maybe because in python they don't really abstract much of the implementation details, unlike in C# dan Java?
@MilanJovanovicTech7 ай бұрын
That could be the reason, yeah 🤔
@vladimirmilovanovic7 ай бұрын
Putting Dapper in Application layer breaks "Separation of concerns". Dapper should be in Infrastracture since it is part of external concerns.
@MilanJovanovicTech7 ай бұрын
Conceptually, I agree. But that ends up leading to indirection from App to Infra that doesn't add much in value. What's your approach there?
@vladimirmilovanovic7 ай бұрын
@@MilanJovanovicTech I prefer to keep database information out of the application. In this case, application layer knows db connection, type of db, db scheme. Pretty much everything.