🌟 Get Source Code: www.patreon.com/CodingDroplets 🔗Blazor Tutorial Series: kzbin.info/aero/PLzewa6pjbr3IQEUfNiK2SROQC1NuKl6PV
@pavanshevle68304 ай бұрын
Your way of teaching is very simple. Thanks. Could you please make video on SOLID principles and different design patterns?
@CodingDroplets4 ай бұрын
Thank you for your kind words! I'm glad you found the tutorial helpful. I appreciate your suggestion, and I'll definitely consider making a video on SOLID principles and different design patterns.
@imadabab4 ай бұрын
This is really perfect. Thanks so much. I have subscribed.
@CodingDroplets4 ай бұрын
Thank you for subscribing! I'm glad you found the tutorial helpful. More content is on the way-stay tuned!
@sahil1003942 ай бұрын
Can you please explain why do we need repository pattern and what are it's alternatives?
@CodingDroplets2 ай бұрын
The repository pattern is a popular approach to organizing your data access code in a way that keeps it clean, maintainable, and testable. It acts as a middle layer between your business logic and the data layer, promoting separation of concerns. Another well-known alternative to this pattern is CQRS (Command Query Responsibility Segregation), which offers a different way to manage your application’s read and write operations.
@JohnSmith-yr7ih8 ай бұрын
Hello and thanks! Please make a tutorial of aspNet web api + Blazor webassembly (not a `BlazorApp` or `Blazor Server` templates) Identity auth tutotial (new way, .net 8). register, login, logout features
@CodingDroplets7 ай бұрын
Thank you for your suggestion! I appreciate your interest. I'll definitely consider creating a tutorial covering those topics
@WitheredPancake16 күн бұрын
Love your videos, but the wobbly text overlays makes me feel dizzy
@CodingDroplets11 күн бұрын
Thank you for the feedback! 😊 I’m glad you're enjoying the videos, and I appreciate your honesty about the text overlays. I’ll definitely keep that in mind for future videos and work on making the visuals smoother. Thanks for watching, and feel free to reach out with any other suggestions!
@devendrapandey23874 ай бұрын
I don't think this is good approach to create same kind of method again and again for all repository. You can create one Generic repository and inherit that in all others.
@CodingDroplets4 ай бұрын
This video is created to demonstrate how singleton, scoped, and transient lifetimes work in .NET Core. By using this approach, you can clearly see the differences in behavior and values from the same service instance under different lifetimes. For a production application, I agree that creating a generic repository and inheriting it in all others is a better approach for code reuse and maintainability. Thank you for your feedback!