---
title: "What is Dependency Resolution?"  
description: "What is Dependency Resolution?"  
author: "Anupam Mishra"  
published: 2016-05-03  
updated: 2020-09-24  
canonical: https://www.mindstick.com/interview/23013/what-is-dependency-resolution  
category: "asp.net mvc"  
tags: ["asp.net", "asp.net mvc"]  
reading_time: 2 minutes  

---

# What is Dependency Resolution?

In MVC 3 introduced a new concept called a dependency resolver, that greatly simplified the use of dependency injection in your applications. This made it easier to decouple application components, making them more configurable and easier to test.**Support was added for the following scenarios:**

1. Controllers (registering and injecting controller factories, injecting controllers)\
2. Views (registering and injecting view engines, injecting dependencies into view pages)\
3. Action filters (locating and injecting filters)\
4. Model binders (registering and injecting)\
5. Model validation providers (registering and injecting)\
6. Model metadata providers (registering and injecting)\
7. Value providers (registering and injecting)\

## Answers

### Answer by Anupam Mishra

In MVC 3 introduced a new concept called a dependency resolver, that greatly simplified the use of dependency injection in your applications. This made it easier to decouple application components, making them more configurable and easier to test.**Support was added for the following scenarios:**

1. Controllers (registering and injecting controller factories, injecting controllers)\
2. Views (registering and injecting view engines, injecting dependencies into view pages)\
3. Action filters (locating and injecting filters)\
4. Model binders (registering and injecting)\
5. Model validation providers (registering and injecting)\
6. Model metadata providers (registering and injecting)\
7. Value providers (registering and injecting)\


---

Original Source: https://www.mindstick.com/interview/23013/what-is-dependency-resolution

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
