The dependency injection feature in ASP.NET Core is:

  • A built-in container for managing application dependencies
  • A third-party library for dependency management
  • Not available in ASP.NET Core
  • Limited to a specific programming language
ASP.NET Core includes a built-in dependency injection (DI) container for managing application dependencies. This feature helps achieve loose coupling, maintainability, and testability in your code by allowing you to inject dependencies into classes rather than hard-coding them.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *