Dependency Injection in C# ❘ A Hands-On Guide to Boosting Code Flexibility and Testability

Поделиться
HTML-код
  • Опубликовано: 25 ноя 2024

Комментарии • 155

  • @SkillFoundryIO
    @SkillFoundryIO  6 месяцев назад +3

    If you like this video and want to learn C# in depth from me, visit www.skillfoundry.io! The learning pathway takes you from zero to professional-level coding skills, but be prepared for rigor and depth. It takes over 700 hours to complete, with 80+ exercises and 12+ substantial capstone projects.

  • @guavavodka
    @guavavodka Год назад +33

    If anyone is curious why it's called dependency inversion, it is because instead of the class depending on lower level details (where the choices come from), it now depends on a HIGHER level abstraction (the interface), thus the dependencies were inverted

    • @SkillFoundryIO
      @SkillFoundryIO  Год назад +4

      Absolutely! I left that term off the video because most novices only hear about the injection part. 😇
      Thanks for adding more information!

  • @RogerDunder
    @RogerDunder 7 месяцев назад +20

    That was the easiest most clear explanation i found so far, thank you so much!

  • @julieyeaeun
    @julieyeaeun 11 месяцев назад +6

    Eric you are an AMAZING teacher!
    Sincerely, a former teacher turned programmer :)

  • @christianfredrickgerman9170
    @christianfredrickgerman9170 8 месяцев назад +3

    Thanks. You explain DI so clear and simple that even non programmer can understand.

    • @valnuke
      @valnuke 5 месяцев назад

      absolutely! I just explained it to my grandma (83 years old, can barely write) and she totally got it.

  • @gracicot42
    @gracicot42 Год назад +5

    Hi! I'm the creator of the kangaru dependency injection library for C++. What I love about that tutorial is that you teach beginners to do it without a framework. A dependency injection library is only there to automate boilerplate that happens in the wiring code, and not essential for dependency injection.
    Another point (for more advanced programmers) is that technically, dependency injection don't require interfaces to work. union (sum types) or enums can also do the trick when you want your component to let users choose its behaviour, but have a closed set of possible behaviour. This still enable testing without introducing virtual function calls when unneeded.
    In my case, which might be a C++ only thing, adding virtual functions (any overridable function) strictly only for the purpose of testing is smelly code. I try to keep behaviour choices as closed as possible and thus do my DI with concrete types when possible with the choice of behaviour being values inside those concrete types.

    • @SkillFoundryIO
      @SkillFoundryIO  Год назад

      Thank you for your kind words!
      I agree on the virtual methods as well, it’s a smelly pattern.

    • @gracicot42
      @gracicot42 Год назад

      @@SkillFoundryIO Yeah, but definitely something that will only appear with larger projects, or projects with tight performance requirements. Out of the scope of the video, but still worth mentioning here in the comments :)

  • @mitkram99
    @mitkram99 Год назад +3

    This is exactly the approach we took in our project. OOP in C# is not complete if not done with DI. Dependency Injection was intimidating at first but once you fully understood its principles, you'll get addicted to using it in your OOP implementation.

    • @SkillFoundryIO
      @SkillFoundryIO  Год назад +1

      Agreed! There is always a trade-off for complexity, so for really simple things like batch jobs I sometimes skip it, but for the most part you should be implementing it, especially between layers of your project.

  • @SproutSkout
    @SproutSkout 5 месяцев назад +4

    I am sold when you said "We teach people how to code the right way."

    • @SkillFoundryIO
      @SkillFoundryIO  5 месяцев назад

      Especially in the current market it’s important to have strong foundations!

  • @NiKo-lh2nq
    @NiKo-lh2nq 4 месяца назад +2

    As soon as I opened the video and saw your face sir, I felt overwhelmed by a sense of trust. I immediately subscribed.

  • @stressfreesid9498
    @stressfreesid9498 6 месяцев назад +1

    I will say you are the great master teacher. You have extra ordinary skills and techniques for teaching lots of blessing from all who watched this videos.

  • @HiwashiYT
    @HiwashiYT Год назад +2

    What an amazing explanation for a very confusing topic to beginners like myself, you even added the testing example that so many people mention but never show! Great work, will definitely follow your channel for more content.

  • @KnightMirkoYo
    @KnightMirkoYo Год назад +3

    Wow, really cool. I've been doing it a lot in my code, but didn't have a complete understanding of how powerful it is

    • @SkillFoundryIO
      @SkillFoundryIO  Год назад +1

      I’ve noticed a lot of tutorials show how but don’t spend much if any time on the why.
      It’s one of the reasons in our courses we refactor projects as we learn new techniques so our learners can better see the difference between novice and professional approaches!

  • @Salvotation
    @Salvotation Год назад +1

    I’m learning programming as a hobbyist and to make my work life easier. I am at the stage where I have learnt the basic C# syntax and solving individual problems. Now trying to start learning OOP, this is a really helpful approach to start understanding it’s uses!

    • @SkillFoundryIO
      @SkillFoundryIO  Год назад +1

      Stay motivated! OOP is the hardest part, once you get it the rest is not nearly as difficult to learn.

  • @zajac4817
    @zajac4817 2 месяца назад

    This video got recommended to me just now. Amazing concept explained flawlessly. Thank you!!!!!!!😊

  • @panic_seller
    @panic_seller Год назад +2

    saw this in a Job Description and Now seeing it on RUclips all in less than 2 hours, The gods wanted me to learn this

    • @SkillFoundryIO
      @SkillFoundryIO  Год назад

      Hope it helped! If you want to go deeper into it in C#, check out our main site.

  • @0bayan01
    @0bayan01 2 месяца назад

    YOU ARE AWESOME! I was struggling for days trying to understand what is dependency injection, Now I get it!! Thank you with all my heart!

  • @justHeisen
    @justHeisen 10 месяцев назад +1

    You have the perfect pace for teaching.

  • @drgothmania
    @drgothmania 3 месяца назад

    I have to say that every time I read something about dependency injection, I kinda understand a bit of it yet still feel that it's an intimidating concept. But your explanation is so cool and simple. Thank you for making this. I love the example and really want to try it out right now.

    • @SkillFoundryIO
      @SkillFoundryIO  3 месяца назад +1

      Awesome! Good luck in your learning!

  • @skol45
    @skol45 16 дней назад

    You are so humble and awesome in your explanations!
    I dont yet grasp it as iam farely new, but I did have exactly these beginner issues of too much coupling, will learn & apply dependency injection in the future!

  • @joekimbler
    @joekimbler 9 месяцев назад +1

    Fantastic explanation and example for DI!! You teach both the concept of DI as well as how it is implemented in c#. Simple and to the point. Great job.

  • @martinroa
    @martinroa 7 месяцев назад +1

    This video is gold.

  • @SumitKumar-fn3gj
    @SumitKumar-fn3gj 2 месяца назад

    one of the best video of this topic. Thank you so much!

  • @PimaKakaroto
    @PimaKakaroto Месяц назад

    Thank you for the concrete example to make sense of the topic. Most of the other videos I've found implement a very generic Class1 with interfaceA or whatever but seeing an actual working application and how the changes are done finally made it click for me.

    • @SkillFoundryIO
      @SkillFoundryIO  Месяц назад

      It’s both the hardest and most rewarding part of teaching- finding examples that are real enough but not overly complicated.
      Thank you for the kind words!

  • @navjotkaur973
    @navjotkaur973 5 месяцев назад +1

    In depth Explanation from a master! Awesome!

  • @jessadadissopa2318
    @jessadadissopa2318 4 месяца назад

    i like the way you teach, explaining things with not too fast speed and i like your energy. you're a great teacher. and I subscribed

  • @PrettyBlueThings
    @PrettyBlueThings 8 месяцев назад +1

    Excellent explanation!

  • @CousinAnthony
    @CousinAnthony 15 дней назад

    I liked the explanation and example. It would also be helpful to have a link to the before and after source code.

  • @NebulaM57
    @NebulaM57 5 месяцев назад

    Sir, this was OUTSTANDING! Thank you so much! I really appreciated you talking slowly thru it. Really helped me not to too confused along the way. You make a great teacher!

  • @unknown.artist.track3
    @unknown.artist.track3 4 месяца назад

    awesome awesome awesome. just brilliant explanation and example

  • @ВалерийСтарцев-з1у
    @ВалерийСтарцев-з1у 4 месяца назад

    Thank you for the video! This is one of the best explanations for Dependency Injection. And one of the best demonstrations of the right approach to programming.

  • @dannyfromm8473
    @dannyfromm8473 27 дней назад

    Great explanation! I've been struggling with this concept

  • @michi1106
    @michi1106 6 месяцев назад

    Love the short but rly clearly overview and example, of what dependency injection is. At the begin i thought it was some evil stuff, but learned fast, its simple and rly helpful.

  • @JanKowalski-ld4ec
    @JanKowalski-ld4ec 10 месяцев назад

    I'd been lookin for good interface explanation until I found your channel. And you did best of what you could. Explained interfaces and DI at once, on working example. Fantastic job! Great content, great teaching approach, wide perspective filled with necessary details without overhelming the learner and topic. All the best for you and your channel!

  • @TheSopk
    @TheSopk 6 месяцев назад +1

    So clear, first time I understand how usefulin dependency injection.

  • @Aleamanic
    @Aleamanic 4 месяца назад

    Great job explaining! First time, after watching many related videos, I could follow the explanation and got it. Presented at the right pace with good examples. Thank you!

  • @EA33964
    @EA33964 8 месяцев назад

    Best explanation so far. So glad I found your video. Thanks

  • @marceloleoncaceres6826
    @marceloleoncaceres6826 6 месяцев назад +1

    GREAT example, thanks for sharing it!

  • @aluminatsulana
    @aluminatsulana 6 месяцев назад

    This was some incredible explanation!
    I was realy struggleing with the concept at first but now after the video how I even struggled at the first place!
    Great video!

    • @SkillFoundryIO
      @SkillFoundryIO  6 месяцев назад

      Everyone struggles at first my friend

  • @philariascfm
    @philariascfm 4 месяца назад

    Bro, you are such a good teacher. Thank you so much. You made this concept so understandable.

  • @MrSaladdin
    @MrSaladdin 5 месяцев назад

    The best explanation for this topic!

  • @schmidtlach
    @schmidtlach 7 месяцев назад

    I have been searching for weeks and watching tens of videos on the subject. I finally found it on your channel. Thank you for sharing 😂. It's clear to me now. I'm subscribing to your channel 😊.

  • @investinglearningmachine3951
    @investinglearningmachine3951 9 месяцев назад +1

    Hey, this is the best explanation and examples. Thank you so much!

  • @asyaaynurgers1261
    @asyaaynurgers1261 3 месяца назад

    Really helpful video for begginners thank u

  • @extrasolar9976
    @extrasolar9976 5 месяцев назад

    This is an awesome video! The way you explain this concept so clearly and calmly really made me understand it. Thanks!

    • @SkillFoundryIO
      @SkillFoundryIO  5 месяцев назад

      You are welcome! Now reinforce it with practice!

  • @AhmetStupac
    @AhmetStupac Месяц назад

    Perfect explanation, thanks!

  • @karimdh8549
    @karimdh8549 2 месяца назад

    Thank you for the clear explanaition

  • @josefvarilek6712
    @josefvarilek6712 2 месяца назад

    Great tutorial, its definitely the first one I saw, which does not use any "magic" of a DI container, which is very confusing for beginners.

  • @ninjask8ter
    @ninjask8ter Год назад +1

    This video was a great refresher especially after being away from it for so many years! Is there any available code so I can save?

    • @SkillFoundryIO
      @SkillFoundryIO  Год назад

      Sorry, I haven't set up a GitHub repository for the RUclips channel. Honestly didn't think about it. I'll put that on my list of things to do this month.

  • @randallholmes4282
    @randallholmes4282 Год назад +1

    Beautiful! Thank you!

  • @taar
    @taar 4 месяца назад

    Thank you, this is so clear and easy to understand.

  • @Speak4Yourself2
    @Speak4Yourself2 Год назад +1

    NIce tutorial! Thanks a lot! Promising channel.

  • @bamf75
    @bamf75 8 месяцев назад

    really nicely done...any chance you could do a DI container video?

  • @peterd788
    @peterd788 Месяц назад

    A clear explanation. I sometimes struggle to get across to people how simple this concept is. BTW, having constant 1980s porno music in the background can make videos very difficult to follow for people with a hearing impairment.

    • @SkillFoundryIO
      @SkillFoundryIO  Месяц назад

      Yeah, I told my editor to not have background music in tutorials anymore.

  • @gregschlitt3847
    @gregschlitt3847 7 месяцев назад

    Nice work, with a well chosen example

  • @أدرينالين-قصصرعب
    @أدرينالين-قصصرعب 7 месяцев назад

    Thank you sir you’ve saved me ❤️ you way of explaining the concept is really amazing and the example itself is simple. Please explain the dependency injection container too 🙏 thanks again

  • @criticalthinker88gis13
    @criticalthinker88gis13 Месяц назад

    You are fantastic, thank you.

  • @ernestocampese
    @ernestocampese 6 месяцев назад

    Very well explained. Great job, thank you 👍

  • @MarkVoz-n7j
    @MarkVoz-n7j 9 месяцев назад

    this was amazon explanation, I love it, thank you

  • @Krissini
    @Krissini 9 месяцев назад

    fantastic video, beautifuly explained and an easy to follow and recode example. Thank you!

  • @Director414
    @Director414 8 месяцев назад

    Great video! You really good at explaining stuff, well done! Impressive. Keep up the good work!!

  • @alfonzo6320
    @alfonzo6320 7 месяцев назад

    This is an excellent video!

  • @StefanoTurcarelli
    @StefanoTurcarelli 8 месяцев назад

    Thank you so much for this amazing example!

  • @ce1tzu
    @ce1tzu 5 месяцев назад +1

    Gold content!

  • @lingy-r8e
    @lingy-r8e 3 месяца назад

    That's helpful, thank you

  • @SeraphixD3
    @SeraphixD3 Год назад +1

    Nicely explained

  • @Mamika_AFK
    @Mamika_AFK Год назад +1

    Another great video! Keep it up! 😄👍

  • @KarZaz-k2g
    @KarZaz-k2g 7 месяцев назад

    Amazing video 👌👌

  • @EMdragonKnight
    @EMdragonKnight 5 месяцев назад

    Can you do a video on the concept of "Clean Code". Also utilizing abstract classes and interfaces to achieve clean code.
    I've been interviewing a lot lately and Object Oriented Design style interviews have been creeping up a lot (Amazon famous for it). I personally would love it if you did.

    • @SkillFoundryIO
      @SkillFoundryIO  5 месяцев назад +1

      I have an SRP video as well, but I haven't had time to get to the rest yet. It'll happen someday.

  • @mahmoudmohammed9287
    @mahmoudmohammed9287 Год назад +1

    Nice explanation keep it up❤

  • @ElCidPhysics90
    @ElCidPhysics90 5 месяцев назад

    Thanks for this video. Seems strange to have the actual console, the view, inside of an interface class? Does that restrict how the human player is implemented? What if you were moving this to a WPF app?

    • @SkillFoundryIO
      @SkillFoundryIO  5 месяцев назад +1

      Yes I was just demonstrating DI. I think going full separation of concerns would be
      distracting to the learner.

  • @thanongtft6953
    @thanongtft6953 3 месяца назад

    clean code, and maintenance

  • @KarZaz-k2g
    @KarZaz-k2g 7 месяцев назад

    Great video

  • @waynegreen7970
    @waynegreen7970 10 месяцев назад

    Good content!

  • @userman444
    @userman444 9 месяцев назад

    Thank you! Found something new :)

  • @bradleyr4451
    @bradleyr4451 3 месяца назад

    Hi this is great, am at 0:53 and see its a BLACK SCREEN with faint letters in tiny font? I started computers in the 70s, the monitors had extreme contrast by todays standard. This is eye strain, any way you can do one episode with the "normal" white background and dark blue text thats zoomed so it looks 18pt or so? why, WHY??? do people feel the need to use the black background? why? I have alot to say about DI and making changes to it. Thank you

    • @SkillFoundryIO
      @SkillFoundryIO  3 месяца назад +1

      If I use the white background people complain too. Sigh…
      But done, next video will be default color scheme!

    • @bradleyr4451
      @bradleyr4451 3 месяца назад

      @@SkillFoundryIO Thanks! Im in a very well lit room and have used the white screen since the late 80s when it was possible.

    • @CuongNguyen-gu9fl
      @CuongNguyen-gu9fl Месяц назад

      I'll tell you why, developers are vampire these days.

  • @CHURUTEInternational
    @CHURUTEInternational 10 месяцев назад +1

    2 questions. are you in your bath tub? and does this work the same if I want to use dependency injection in xamarin forms or MAUI?

    • @SkillFoundryIO
      @SkillFoundryIO  10 месяцев назад

      1. I’ve been upgrading my gear. Didn’t want to over invest if the channel didn’t take off.
      2. Yes it works the same.

  • @ahmedh2482
    @ahmedh2482 6 месяцев назад

    you are awesome

  • @joelmatthews3255
    @joelmatthews3255 6 месяцев назад

    Great video. My only recommendation is to maybe forgo the background music. I personally found it a little distracting while trying to concentrate on your voice at times.

  • @plaxor
    @plaxor 4 месяца назад +2

    watching in 1.5x speed.. better..

  • @F30-Jet
    @F30-Jet 6 месяцев назад

    made me smile

  • @LuisSieira
    @LuisSieira 6 месяцев назад

    Very good video. Just... I'm not fan of the Iplayer nomenclature... the client of the API you defined does not care if it is interacting with an interface or an implementation. You manager talks to a Player, not to an IPlayer. Same way you interact with a List, not an Ilist, that you can new ArrayList, but the list is not an IList, and the ArrayList is not a ListImpl (I am not fan of the PlayerImpl either).
    You have a public interface Player, and a public class HumanGamer implements Player, and a BipBoopRandomGambler implements Player...

    • @SkillFoundryIO
      @SkillFoundryIO  6 месяцев назад

      That’s mostly a c# thing. Most devs use the I prefix.

  • @666nevermore
    @666nevermore 5 месяцев назад

    Why is this an interface? Why not a class Player that has a choice and then the 2 classes human and computer derive from player? I mean why an interface? It sounds more logic to me to be a class. I’m genuinely asking

    • @SkillFoundryIO
      @SkillFoundryIO  5 месяцев назад

      There’s a few reasons. What you suggest is polymorphic so you could substitute. However inheritance is an is-a relationship while choosing a type is a can-do.
      It is more modular and testable to be an interface implementation.

    • @666nevermore
      @666nevermore 5 месяцев назад

      @@SkillFoundryIO yes and thank you. I was just wondering if you could use the same injection pattern but using inheritance instead of interfaces

  • @ataberktural
    @ataberktural 4 месяца назад

    Can you position your camera smaller in the next video? It's a bit distracting.

    • @SkillFoundryIO
      @SkillFoundryIO  4 месяца назад

      Absolutely

    • @ataberktural
      @ataberktural 4 месяца назад

      @@SkillFoundryIO thank you for your reply but its was just irony :)

  • @beloaded3736
    @beloaded3736 17 дней назад

  • @lemonade2345-j4e
    @lemonade2345-j4e 6 месяцев назад

    lol. a switch statement anyone?

  • @neilfaeskene4978
    @neilfaeskene4978 4 месяца назад +1

    So this looked to be a pretty good video, but then the background music started up. No added benefit, super distracting. So my recommendation would be to leave it out.

    • @SkillFoundryIO
      @SkillFoundryIO  4 месяца назад

      Thank you. I plan on doing future demos without music.

    • @zajac4817
      @zajac4817 2 месяца назад

      Lmao. Zero problems with the music. A flawless video, but someone is always going to complain.

  • @SAAbir-si8wk
    @SAAbir-si8wk 6 месяцев назад

    I can never thank you enough! God, It's a gem! The example, the explanation, the accent, the pace.... it's perfect! damn! 🤌🤌
    One other thing. The background sound-track is so soothing! What's the track name?

    • @SkillFoundryIO
      @SkillFoundryIO  6 месяцев назад +1

      Not sure on the music, my editor uses epidemic sound subscription. They have a lot of music like that.