SlideShare a Scribd company logo
Dependency Injection and
Autofac
By: Keith Schreiner & Jeff Benson
Goals
1) Provide basic info about DI.
2) Get you excited to use DI.
3) Get you to recommend using a DI tool (like
Autofac) on your next project.
Why?
DI enables loose coupling, and loose coupling makes
code more maintainable.
Great for medium or big applications that need to be
maintained.
DI can change the way you write software. (Good)
Instead of bottom-up, DI allows for top-down.
(DB to UI)

(UI to DB)
Definition of Dependency Injection
• A set of object-oriented software design principles &
patterns that enable us to develop loosely coupled
code, by passing or setting the dependencies of a
program.
• Instead of components having to request
dependencies, they are given (injected) into the
component.
• (Sounds complex, but really isn’t.)
Explain Dependency Injection to a
5-year old
When you go and get things out of the refrigerator for
yourself, you can cause problems.
You might leave the door open, you might get
something Mommy or Daddy doesn't want you to
have. You might even be looking for something we
don't even have, or which has expired.
What you should be doing is stating a need, "I need
something to drink with lunch," and then we will
make sure you have something when you sit down to
eat.
From John Munsch on Stack Overflow
DI is a set of Design Patterns &
Principles
Making code more maintainable through loose
coupling is the core motivation behind many classic
design patterns (dating back to 1995 and the Gang of Four):
Program to an interface, not an implementation
Property Injection
public partial class SomeClass
When a dependency is optional.
{
private ISomeInterface dependency;
+ Simple to understand.
public ISomeInterface Dependency
- But limited in its use.
{
get
- Not simple to implement robustly.
{
if (this.dependency == null)
this.Dependency = new DefaultSome();
return this.dependency;
}
set
{
if (value == null)
throw new ArgumentNullException("value");
if (this.dependency != null)
throw new InvalidOperationException();
this.dependency = value;
}
}
public string DoSomething(string message)
{
return this.Dependency.DoStuff(message);
}
SOLID & DI
S

Single Responsibility Principle

• An object should have only a single responsibility.
Open/Closed Principle

O

• Software entities should be open for extension, but closed for
modification.
Liskov Substitution Principle

L

• Objects in a program should be replaceable with instances of their
subtypes without altering the correctness of that program.
Interface Segregation Principle

I

• Many client specific interfaces are better than one general purpose
interface.
Dependency Inversion Principle

D

• One should depend on abstractions; do not depend upon
concretions.
Benefits of DI
•
•
•
•
•
•

Late Binding
Extensibility
Parallel Development
Maintainability
Testability
Code Structure
– Interface Driven Development
– All dependencies registered in one spot
– Never have to write code to “new-up” objects.
Negatives of DI
• Learning curve.
• Constructor code may look more complicated.

• Code may seem “magical” for developers who
do not know DI.
• Is over-kill for very small projects.
• Makes classes harder to re-use outside of a DI
app.
DI Myths
• Not just relevant for late binding.
• Not just relevant for unit testing.
• Is not just a Service Locator.
DI or Inversion of Control
Sometimes DI and IoC are interchanged.
IoC = Inversion of Control
IoC = A framework controls program flow.

IoC includes DI.
Example
A “Hello World” or any small example will do a
horrible job of showing off DI. But here it is…
[Shipping with Weather]
1.
2.
3.
4.
5.

Write some Interfaces
Implement some classes. Class Foo : IFoo
Create a class to load the modules
In this loading-class, register and configure your classes
In the startup of your program, register this loading-class
DI Dimensions (Ideas)
1) Object Composition
2) Object Interception
3) Object Lifetime Management
a)

InstancePerDependency

a)

SingleInstance

b)
c)

InstancePerLifetimeScope
InstancePerMatchingLifetimeScope
.NET DI Containers
There are many good choices (feel free to try others):
• Castle Windsor (Popular, but big. Good choice)
• Structure Map (Oldest [2004] .net DI container, popular)
• Spring.NET (port from Java, big learning curve)
• Unity (From Microsoft’s P&P team, solid but different)
• Ninject (Good, simple to use)
• Autofac (Most recent, based on C# 3, gaining popularity)
Plus about 10 other not-as-popular ones.
Autofac
• Get it: http://autofac.org or NuGet.
• What you get: a zip with binaries.
• Platforms: .NET 3.5 SP1, .NET 4, Silverlight 3 & 4, Windows
Phone 7.
• Cost? Free. It is open source.
• Help? http://autofac.org or StackOverflow
• ReSharper also really helps speed-up dev.
Autofac Integration
Autofac has additional packages for integration:
• ASP.NET WebForms
• ASP.NET MVC3
• WCF (Windows Communication Foundation)
• And others
Using Autofac
1) Develop your code using DI-friendly patterns
2) Configure Autofac
1)
2)

Create a ContainerBuilder
Add configuration.
•
Tell the ContainerBuilder your objects, and interfaces, and
lifetimes, etc.
3) Create a Container (from the ContainerBuilder)
4) Use the Container to resolve components (objects).
Configuration
• Code
• Auto (using an assembly)
• XML

Recommend: Use Package config Autofac.Module
Registering Dependencies in
Autofac
1) Type, lambda expression, specific instance, or
auto-register
builder.RegisterType<TaskController>();

builder.Register(
c => new TaskController(c.Resolve<ITaskRepository>())
);
builder.RegisterInstance(new TaskController());

builder.RegisterAssemblyTypes(typeof(IPresenter).Assembly)
.Where(t => t.IsAssignableTo<IPresenter>())
.OnActivating(e => ((IPresenter)e.Instance).SetupView());
Lifetime Options
1.
2.
3.
4.

InstancePerDependency
InstancePerLifetimeScope
InstancePerMatchingLifetimeScope
SingleInstance
Applying Autofac
• Let’s see how we can use DI and Autofac on a
big project.
• First, how one might normally create the
project without using DI.
• Second, how to create it with DI.
Common 3-tier App without DI
• Not “wrong,” but not an inherent guarantee of loose coupling
• Build Data, then BI, then UI. (bottom-up)
• The layers really are tightly coupled together, like the domain
entities from the data layer.
• Hard to test.

• Config file dependent.
Advanced Configurationg (for more
complex APIs)
Builder.RegisterType<Chicken>().As<IIngredient>();
Builder.RegisterType<Steak>().As<IIngredient>();
Last one wins, unless you ask for an array of IIngredient’s.
Builder.RegisterType<Chicken>().Named<IIngredient>(“chicken”);
Builder.RegisterType<Steak>().Named<IIngredient>(“steak”);
Can also “name” your registrations.
This allows you to do many things when working with multiple components with the same
interface, often with lambda expressions.
Builder.RegisterType<Meal>().As<IMeal>().WithParameter(
(p,c)=>true,(p,c)=>new[] {c.ResolveNamed<IIngredient>(“chicken”),
c.ResolveNamed<IIngredient>(“steak”)});
Also, if your constructor has a string, number, enum as a parameter, it is possible to register that
string as a component, or pass them in as a NamedParameter.
Summary
• Use DI to enable loose coupling and to make code
more maintainable.
• DI is just a set of good patterns, like programming to
an interface.
• Using DI can change the way you code (for the
better) because of the good patterns.
• There are several DI tools to choose from and
Autofac is good choice.
• Use DI on your next project!
Resources
• Autofac.org

• Book: “Dependency Injection in .NET” by Mark
Seemann.

http://www.manning.com/seemann/

• Podcast with Autofac creator
http://www.dotnetrocks.com/default.aspx?showNum=450

• Advanced relationship types with Autofac
http://nblumhardt.com/2010/01/the-relationship-zoo/

• Stackoverflow.com
Dependency Injection and Autofac
Ad

More Related Content

What's hot (20)

What is Dependency Injection in Spring Boot | Edureka
What is Dependency Injection in Spring Boot | EdurekaWhat is Dependency Injection in Spring Boot | Edureka
What is Dependency Injection in Spring Boot | Edureka
Edureka!
 
React workshop presentation
React workshop presentationReact workshop presentation
React workshop presentation
Bojan Golubović
 
React hooks Episode #1: An introduction.
React hooks Episode #1: An introduction.React hooks Episode #1: An introduction.
React hooks Episode #1: An introduction.
ManojSatishKumar
 
Spring Framework
Spring FrameworkSpring Framework
Spring Framework
nomykk
 
Dependency Inversion Principle
Dependency Inversion PrincipleDependency Inversion Principle
Dependency Inversion Principle
Shahriar Hyder
 
Design Pattern - Factory Method Pattern
Design Pattern - Factory Method PatternDesign Pattern - Factory Method Pattern
Design Pattern - Factory Method Pattern
Mudasir Qazi
 
React js programming concept
React js programming conceptReact js programming concept
React js programming concept
Tariqul islam
 
An introduction to React.js
An introduction to React.jsAn introduction to React.js
An introduction to React.js
Emanuele DelBono
 
Spring Security
Spring SecuritySpring Security
Spring Security
Knoldus Inc.
 
Asynchronous Programming in C# - Part 1
Asynchronous Programming in C# - Part 1Asynchronous Programming in C# - Part 1
Asynchronous Programming in C# - Part 1
Mindfire Solutions
 
Rest API with Swagger and NodeJS
Rest API with Swagger and NodeJSRest API with Swagger and NodeJS
Rest API with Swagger and NodeJS
Luigi Saetta
 
Solid Principles
Solid PrinciplesSolid Principles
Solid Principles
Thiago Dos Santos Hora
 
Spring mvc
Spring mvcSpring mvc
Spring mvc
Pravin Pundge
 
Facade pattern
Facade patternFacade pattern
Facade pattern
JAINIK PATEL
 
spring-boot-fr.pdf
spring-boot-fr.pdfspring-boot-fr.pdf
spring-boot-fr.pdf
seydou4devops
 
Vue js for beginner
Vue js for beginner Vue js for beginner
Vue js for beginner
Chandrasekar G
 
Presentation1
Presentation1Presentation1
Presentation1
Anul Chaudhary
 
Software Design Patterns
Software Design PatternsSoftware Design Patterns
Software Design Patterns
Satheesh Sukumaran
 
React - Introdução
React - IntroduçãoReact - Introdução
React - Introdução
Jefferson Mariano de Souza
 
reactJS
reactJSreactJS
reactJS
Syam Santhosh
 
What is Dependency Injection in Spring Boot | Edureka
What is Dependency Injection in Spring Boot | EdurekaWhat is Dependency Injection in Spring Boot | Edureka
What is Dependency Injection in Spring Boot | Edureka
Edureka!
 
React workshop presentation
React workshop presentationReact workshop presentation
React workshop presentation
Bojan Golubović
 
React hooks Episode #1: An introduction.
React hooks Episode #1: An introduction.React hooks Episode #1: An introduction.
React hooks Episode #1: An introduction.
ManojSatishKumar
 
Spring Framework
Spring FrameworkSpring Framework
Spring Framework
nomykk
 
Dependency Inversion Principle
Dependency Inversion PrincipleDependency Inversion Principle
Dependency Inversion Principle
Shahriar Hyder
 
Design Pattern - Factory Method Pattern
Design Pattern - Factory Method PatternDesign Pattern - Factory Method Pattern
Design Pattern - Factory Method Pattern
Mudasir Qazi
 
React js programming concept
React js programming conceptReact js programming concept
React js programming concept
Tariqul islam
 
An introduction to React.js
An introduction to React.jsAn introduction to React.js
An introduction to React.js
Emanuele DelBono
 
Asynchronous Programming in C# - Part 1
Asynchronous Programming in C# - Part 1Asynchronous Programming in C# - Part 1
Asynchronous Programming in C# - Part 1
Mindfire Solutions
 
Rest API with Swagger and NodeJS
Rest API with Swagger and NodeJSRest API with Swagger and NodeJS
Rest API with Swagger and NodeJS
Luigi Saetta
 

Similar to Dependency Injection and Autofac (20)

Cara Tepat Menjadi iOS Developer Expert - Gilang Ramadhan
Cara Tepat Menjadi iOS Developer Expert - Gilang RamadhanCara Tepat Menjadi iOS Developer Expert - Gilang Ramadhan
Cara Tepat Menjadi iOS Developer Expert - Gilang Ramadhan
DicodingEvent
 
Method Swizzling with Objective-C
Method Swizzling with Objective-CMethod Swizzling with Objective-C
Method Swizzling with Objective-C
AdamFallon4
 
Ef Poco And Unit Testing
Ef Poco And Unit TestingEf Poco And Unit Testing
Ef Poco And Unit Testing
James Phillips
 
Design poo my_jug_en_ppt
Design poo my_jug_en_pptDesign poo my_jug_en_ppt
Design poo my_jug_en_ppt
agnes_crepet
 
Elements of DDD with ASP.NET MVC & Entity Framework Code First
Elements of DDD with ASP.NET MVC & Entity Framework Code FirstElements of DDD with ASP.NET MVC & Entity Framework Code First
Elements of DDD with ASP.NET MVC & Entity Framework Code First
Enea Gabriel
 
Introduction to dependency injection in Scala (Play)
Introduction to dependency injection in Scala (Play)Introduction to dependency injection in Scala (Play)
Introduction to dependency injection in Scala (Play)
Knoldus Inc.
 
Spring boot
Spring bootSpring boot
Spring boot
NexThoughts Technologies
 
OpenDaylight Developer Experience 2.0
 OpenDaylight Developer Experience 2.0 OpenDaylight Developer Experience 2.0
OpenDaylight Developer Experience 2.0
Michael Vorburger
 
iOS Course day 2
iOS Course day 2iOS Course day 2
iOS Course day 2
Rich Allen
 
Cut your Dependencies with Dependency Injection - .NET User Group Osnabrueck
Cut your Dependencies with Dependency Injection - .NET User Group OsnabrueckCut your Dependencies with Dependency Injection - .NET User Group Osnabrueck
Cut your Dependencies with Dependency Injection - .NET User Group Osnabrueck
Theo Jungeblut
 
Solid OOPS
Solid OOPSSolid OOPS
Solid OOPS
Toshish Jawale
 
Clearing confusion about IoC (Inversion of Control)
Clearing confusion about IoC (Inversion of Control)Clearing confusion about IoC (Inversion of Control)
Clearing confusion about IoC (Inversion of Control)
Mohammed Salah Eldowy
 
Make Cross-platform Mobile Apps Quickly - SIGGRAPH 2014
Make Cross-platform Mobile Apps Quickly - SIGGRAPH 2014Make Cross-platform Mobile Apps Quickly - SIGGRAPH 2014
Make Cross-platform Mobile Apps Quickly - SIGGRAPH 2014
Gil Irizarry
 
Jump Start To Ooad And Design Patterns
Jump Start To Ooad And Design PatternsJump Start To Ooad And Design Patterns
Jump Start To Ooad And Design Patterns
Lalit Kale
 
Jump start to OOP, OOAD, and Design Pattern
Jump start to OOP, OOAD, and Design PatternJump start to OOP, OOAD, and Design Pattern
Jump start to OOP, OOAD, and Design Pattern
Nishith Shukla
 
Basic iOS Training with SWIFT - Part 1
Basic iOS Training with SWIFT - Part 1Basic iOS Training with SWIFT - Part 1
Basic iOS Training with SWIFT - Part 1
Manoj Ellappan
 
The Basic Concept Of IOC
The Basic Concept Of IOCThe Basic Concept Of IOC
The Basic Concept Of IOC
Carl Lu
 
Android programming-basics
Android programming-basicsAndroid programming-basics
Android programming-basics
Aravindharamanan S
 
distage: Purely Functional Staged Dependency Injection; bonus: Faking Kind Po...
distage: Purely Functional Staged Dependency Injection; bonus: Faking Kind Po...distage: Purely Functional Staged Dependency Injection; bonus: Faking Kind Po...
distage: Purely Functional Staged Dependency Injection; bonus: Faking Kind Po...
7mind
 
Top 10 Tips for Developing Android Apps Using Kotlin
Top 10 Tips for Developing Android Apps Using KotlinTop 10 Tips for Developing Android Apps Using Kotlin
Top 10 Tips for Developing Android Apps Using Kotlin
SofiaCarter4
 
Cara Tepat Menjadi iOS Developer Expert - Gilang Ramadhan
Cara Tepat Menjadi iOS Developer Expert - Gilang RamadhanCara Tepat Menjadi iOS Developer Expert - Gilang Ramadhan
Cara Tepat Menjadi iOS Developer Expert - Gilang Ramadhan
DicodingEvent
 
Method Swizzling with Objective-C
Method Swizzling with Objective-CMethod Swizzling with Objective-C
Method Swizzling with Objective-C
AdamFallon4
 
Ef Poco And Unit Testing
Ef Poco And Unit TestingEf Poco And Unit Testing
Ef Poco And Unit Testing
James Phillips
 
Design poo my_jug_en_ppt
Design poo my_jug_en_pptDesign poo my_jug_en_ppt
Design poo my_jug_en_ppt
agnes_crepet
 
Elements of DDD with ASP.NET MVC & Entity Framework Code First
Elements of DDD with ASP.NET MVC & Entity Framework Code FirstElements of DDD with ASP.NET MVC & Entity Framework Code First
Elements of DDD with ASP.NET MVC & Entity Framework Code First
Enea Gabriel
 
Introduction to dependency injection in Scala (Play)
Introduction to dependency injection in Scala (Play)Introduction to dependency injection in Scala (Play)
Introduction to dependency injection in Scala (Play)
Knoldus Inc.
 
OpenDaylight Developer Experience 2.0
 OpenDaylight Developer Experience 2.0 OpenDaylight Developer Experience 2.0
OpenDaylight Developer Experience 2.0
Michael Vorburger
 
iOS Course day 2
iOS Course day 2iOS Course day 2
iOS Course day 2
Rich Allen
 
Cut your Dependencies with Dependency Injection - .NET User Group Osnabrueck
Cut your Dependencies with Dependency Injection - .NET User Group OsnabrueckCut your Dependencies with Dependency Injection - .NET User Group Osnabrueck
Cut your Dependencies with Dependency Injection - .NET User Group Osnabrueck
Theo Jungeblut
 
Clearing confusion about IoC (Inversion of Control)
Clearing confusion about IoC (Inversion of Control)Clearing confusion about IoC (Inversion of Control)
Clearing confusion about IoC (Inversion of Control)
Mohammed Salah Eldowy
 
Make Cross-platform Mobile Apps Quickly - SIGGRAPH 2014
Make Cross-platform Mobile Apps Quickly - SIGGRAPH 2014Make Cross-platform Mobile Apps Quickly - SIGGRAPH 2014
Make Cross-platform Mobile Apps Quickly - SIGGRAPH 2014
Gil Irizarry
 
Jump Start To Ooad And Design Patterns
Jump Start To Ooad And Design PatternsJump Start To Ooad And Design Patterns
Jump Start To Ooad And Design Patterns
Lalit Kale
 
Jump start to OOP, OOAD, and Design Pattern
Jump start to OOP, OOAD, and Design PatternJump start to OOP, OOAD, and Design Pattern
Jump start to OOP, OOAD, and Design Pattern
Nishith Shukla
 
Basic iOS Training with SWIFT - Part 1
Basic iOS Training with SWIFT - Part 1Basic iOS Training with SWIFT - Part 1
Basic iOS Training with SWIFT - Part 1
Manoj Ellappan
 
The Basic Concept Of IOC
The Basic Concept Of IOCThe Basic Concept Of IOC
The Basic Concept Of IOC
Carl Lu
 
distage: Purely Functional Staged Dependency Injection; bonus: Faking Kind Po...
distage: Purely Functional Staged Dependency Injection; bonus: Faking Kind Po...distage: Purely Functional Staged Dependency Injection; bonus: Faking Kind Po...
distage: Purely Functional Staged Dependency Injection; bonus: Faking Kind Po...
7mind
 
Top 10 Tips for Developing Android Apps Using Kotlin
Top 10 Tips for Developing Android Apps Using KotlinTop 10 Tips for Developing Android Apps Using Kotlin
Top 10 Tips for Developing Android Apps Using Kotlin
SofiaCarter4
 
Ad

More from meghantaylor (6)

Personal Time Management
Personal Time ManagementPersonal Time Management
Personal Time Management
meghantaylor
 
Parallel Computing in .NET
Parallel Computing in .NETParallel Computing in .NET
Parallel Computing in .NET
meghantaylor
 
Best Practices for Successful Projects
Best Practices for Successful ProjectsBest Practices for Successful Projects
Best Practices for Successful Projects
meghantaylor
 
JavaScript Framework Smackdown
JavaScript Framework SmackdownJavaScript Framework Smackdown
JavaScript Framework Smackdown
meghantaylor
 
A Software Architect's View On Diagramming
A Software Architect's View On DiagrammingA Software Architect's View On Diagramming
A Software Architect's View On Diagramming
meghantaylor
 
Intro to Responsive Web Design
Intro to Responsive Web DesignIntro to Responsive Web Design
Intro to Responsive Web Design
meghantaylor
 
Personal Time Management
Personal Time ManagementPersonal Time Management
Personal Time Management
meghantaylor
 
Parallel Computing in .NET
Parallel Computing in .NETParallel Computing in .NET
Parallel Computing in .NET
meghantaylor
 
Best Practices for Successful Projects
Best Practices for Successful ProjectsBest Practices for Successful Projects
Best Practices for Successful Projects
meghantaylor
 
JavaScript Framework Smackdown
JavaScript Framework SmackdownJavaScript Framework Smackdown
JavaScript Framework Smackdown
meghantaylor
 
A Software Architect's View On Diagramming
A Software Architect's View On DiagrammingA Software Architect's View On Diagramming
A Software Architect's View On Diagramming
meghantaylor
 
Intro to Responsive Web Design
Intro to Responsive Web DesignIntro to Responsive Web Design
Intro to Responsive Web Design
meghantaylor
 
Ad

Recently uploaded (20)

Requirements in Engineering AI- Enabled Systems: Open Problems and Safe AI Sy...
Requirements in Engineering AI- Enabled Systems: Open Problems and Safe AI Sy...Requirements in Engineering AI- Enabled Systems: Open Problems and Safe AI Sy...
Requirements in Engineering AI- Enabled Systems: Open Problems and Safe AI Sy...
Lionel Briand
 
Douwan Crack 2025 new verson+ License code
Douwan Crack 2025 new verson+ License codeDouwan Crack 2025 new verson+ License code
Douwan Crack 2025 new verson+ License code
aneelaramzan63
 
Download Wondershare Filmora Crack [2025] With Latest
Download Wondershare Filmora Crack [2025] With LatestDownload Wondershare Filmora Crack [2025] With Latest
Download Wondershare Filmora Crack [2025] With Latest
tahirabibi60507
 
Automation Techniques in RPA - UiPath Certificate
Automation Techniques in RPA - UiPath CertificateAutomation Techniques in RPA - UiPath Certificate
Automation Techniques in RPA - UiPath Certificate
VICTOR MAESTRE RAMIREZ
 
How to Optimize Your AWS Environment for Improved Cloud Performance
How to Optimize Your AWS Environment for Improved Cloud PerformanceHow to Optimize Your AWS Environment for Improved Cloud Performance
How to Optimize Your AWS Environment for Improved Cloud Performance
ThousandEyes
 
FL Studio Producer Edition Crack 2025 Full Version
FL Studio Producer Edition Crack 2025 Full VersionFL Studio Producer Edition Crack 2025 Full Version
FL Studio Producer Edition Crack 2025 Full Version
tahirabibi60507
 
Exceptional Behaviors: How Frequently Are They Tested? (AST 2025)
Exceptional Behaviors: How Frequently Are They Tested? (AST 2025)Exceptional Behaviors: How Frequently Are They Tested? (AST 2025)
Exceptional Behaviors: How Frequently Are They Tested? (AST 2025)
Andre Hora
 
Adobe Master Collection CC Crack Advance Version 2025
Adobe Master Collection CC Crack Advance Version 2025Adobe Master Collection CC Crack Advance Version 2025
Adobe Master Collection CC Crack Advance Version 2025
kashifyounis067
 
Top 10 Client Portal Software Solutions for 2025.docx
Top 10 Client Portal Software Solutions for 2025.docxTop 10 Client Portal Software Solutions for 2025.docx
Top 10 Client Portal Software Solutions for 2025.docx
Portli
 
Scaling GraphRAG: Efficient Knowledge Retrieval for Enterprise AI
Scaling GraphRAG:  Efficient Knowledge Retrieval for Enterprise AIScaling GraphRAG:  Efficient Knowledge Retrieval for Enterprise AI
Scaling GraphRAG: Efficient Knowledge Retrieval for Enterprise AI
danshalev
 
Adobe Illustrator Crack FREE Download 2025 Latest Version
Adobe Illustrator Crack FREE Download 2025 Latest VersionAdobe Illustrator Crack FREE Download 2025 Latest Version
Adobe Illustrator Crack FREE Download 2025 Latest Version
kashifyounis067
 
Adobe After Effects Crack FREE FRESH version 2025
Adobe After Effects Crack FREE FRESH version 2025Adobe After Effects Crack FREE FRESH version 2025
Adobe After Effects Crack FREE FRESH version 2025
kashifyounis067
 
TestMigrationsInPy: A Dataset of Test Migrations from Unittest to Pytest (MSR...
TestMigrationsInPy: A Dataset of Test Migrations from Unittest to Pytest (MSR...TestMigrationsInPy: A Dataset of Test Migrations from Unittest to Pytest (MSR...
TestMigrationsInPy: A Dataset of Test Migrations from Unittest to Pytest (MSR...
Andre Hora
 
Adobe Marketo Engage Champion Deep Dive - SFDC CRM Synch V2 & Usage Dashboards
Adobe Marketo Engage Champion Deep Dive - SFDC CRM Synch V2 & Usage DashboardsAdobe Marketo Engage Champion Deep Dive - SFDC CRM Synch V2 & Usage Dashboards
Adobe Marketo Engage Champion Deep Dive - SFDC CRM Synch V2 & Usage Dashboards
BradBedford3
 
Mastering Fluent Bit: Ultimate Guide to Integrating Telemetry Pipelines with ...
Mastering Fluent Bit: Ultimate Guide to Integrating Telemetry Pipelines with ...Mastering Fluent Bit: Ultimate Guide to Integrating Telemetry Pipelines with ...
Mastering Fluent Bit: Ultimate Guide to Integrating Telemetry Pipelines with ...
Eric D. Schabell
 
PDF Reader Pro Crack Latest Version FREE Download 2025
PDF Reader Pro Crack Latest Version FREE Download 2025PDF Reader Pro Crack Latest Version FREE Download 2025
PDF Reader Pro Crack Latest Version FREE Download 2025
mu394968
 
Microsoft AI Nonprofit Use Cases and Live Demo_2025.04.30.pdf
Microsoft AI Nonprofit Use Cases and Live Demo_2025.04.30.pdfMicrosoft AI Nonprofit Use Cases and Live Demo_2025.04.30.pdf
Microsoft AI Nonprofit Use Cases and Live Demo_2025.04.30.pdf
TechSoup
 
Salesforce Data Cloud- Hyperscale data platform, built for Salesforce.
Salesforce Data Cloud- Hyperscale data platform, built for Salesforce.Salesforce Data Cloud- Hyperscale data platform, built for Salesforce.
Salesforce Data Cloud- Hyperscale data platform, built for Salesforce.
Dele Amefo
 
Who Watches the Watchmen (SciFiDevCon 2025)
Who Watches the Watchmen (SciFiDevCon 2025)Who Watches the Watchmen (SciFiDevCon 2025)
Who Watches the Watchmen (SciFiDevCon 2025)
Allon Mureinik
 
How can one start with crypto wallet development.pptx
How can one start with crypto wallet development.pptxHow can one start with crypto wallet development.pptx
How can one start with crypto wallet development.pptx
laravinson24
 
Requirements in Engineering AI- Enabled Systems: Open Problems and Safe AI Sy...
Requirements in Engineering AI- Enabled Systems: Open Problems and Safe AI Sy...Requirements in Engineering AI- Enabled Systems: Open Problems and Safe AI Sy...
Requirements in Engineering AI- Enabled Systems: Open Problems and Safe AI Sy...
Lionel Briand
 
Douwan Crack 2025 new verson+ License code
Douwan Crack 2025 new verson+ License codeDouwan Crack 2025 new verson+ License code
Douwan Crack 2025 new verson+ License code
aneelaramzan63
 
Download Wondershare Filmora Crack [2025] With Latest
Download Wondershare Filmora Crack [2025] With LatestDownload Wondershare Filmora Crack [2025] With Latest
Download Wondershare Filmora Crack [2025] With Latest
tahirabibi60507
 
Automation Techniques in RPA - UiPath Certificate
Automation Techniques in RPA - UiPath CertificateAutomation Techniques in RPA - UiPath Certificate
Automation Techniques in RPA - UiPath Certificate
VICTOR MAESTRE RAMIREZ
 
How to Optimize Your AWS Environment for Improved Cloud Performance
How to Optimize Your AWS Environment for Improved Cloud PerformanceHow to Optimize Your AWS Environment for Improved Cloud Performance
How to Optimize Your AWS Environment for Improved Cloud Performance
ThousandEyes
 
FL Studio Producer Edition Crack 2025 Full Version
FL Studio Producer Edition Crack 2025 Full VersionFL Studio Producer Edition Crack 2025 Full Version
FL Studio Producer Edition Crack 2025 Full Version
tahirabibi60507
 
Exceptional Behaviors: How Frequently Are They Tested? (AST 2025)
Exceptional Behaviors: How Frequently Are They Tested? (AST 2025)Exceptional Behaviors: How Frequently Are They Tested? (AST 2025)
Exceptional Behaviors: How Frequently Are They Tested? (AST 2025)
Andre Hora
 
Adobe Master Collection CC Crack Advance Version 2025
Adobe Master Collection CC Crack Advance Version 2025Adobe Master Collection CC Crack Advance Version 2025
Adobe Master Collection CC Crack Advance Version 2025
kashifyounis067
 
Top 10 Client Portal Software Solutions for 2025.docx
Top 10 Client Portal Software Solutions for 2025.docxTop 10 Client Portal Software Solutions for 2025.docx
Top 10 Client Portal Software Solutions for 2025.docx
Portli
 
Scaling GraphRAG: Efficient Knowledge Retrieval for Enterprise AI
Scaling GraphRAG:  Efficient Knowledge Retrieval for Enterprise AIScaling GraphRAG:  Efficient Knowledge Retrieval for Enterprise AI
Scaling GraphRAG: Efficient Knowledge Retrieval for Enterprise AI
danshalev
 
Adobe Illustrator Crack FREE Download 2025 Latest Version
Adobe Illustrator Crack FREE Download 2025 Latest VersionAdobe Illustrator Crack FREE Download 2025 Latest Version
Adobe Illustrator Crack FREE Download 2025 Latest Version
kashifyounis067
 
Adobe After Effects Crack FREE FRESH version 2025
Adobe After Effects Crack FREE FRESH version 2025Adobe After Effects Crack FREE FRESH version 2025
Adobe After Effects Crack FREE FRESH version 2025
kashifyounis067
 
TestMigrationsInPy: A Dataset of Test Migrations from Unittest to Pytest (MSR...
TestMigrationsInPy: A Dataset of Test Migrations from Unittest to Pytest (MSR...TestMigrationsInPy: A Dataset of Test Migrations from Unittest to Pytest (MSR...
TestMigrationsInPy: A Dataset of Test Migrations from Unittest to Pytest (MSR...
Andre Hora
 
Adobe Marketo Engage Champion Deep Dive - SFDC CRM Synch V2 & Usage Dashboards
Adobe Marketo Engage Champion Deep Dive - SFDC CRM Synch V2 & Usage DashboardsAdobe Marketo Engage Champion Deep Dive - SFDC CRM Synch V2 & Usage Dashboards
Adobe Marketo Engage Champion Deep Dive - SFDC CRM Synch V2 & Usage Dashboards
BradBedford3
 
Mastering Fluent Bit: Ultimate Guide to Integrating Telemetry Pipelines with ...
Mastering Fluent Bit: Ultimate Guide to Integrating Telemetry Pipelines with ...Mastering Fluent Bit: Ultimate Guide to Integrating Telemetry Pipelines with ...
Mastering Fluent Bit: Ultimate Guide to Integrating Telemetry Pipelines with ...
Eric D. Schabell
 
PDF Reader Pro Crack Latest Version FREE Download 2025
PDF Reader Pro Crack Latest Version FREE Download 2025PDF Reader Pro Crack Latest Version FREE Download 2025
PDF Reader Pro Crack Latest Version FREE Download 2025
mu394968
 
Microsoft AI Nonprofit Use Cases and Live Demo_2025.04.30.pdf
Microsoft AI Nonprofit Use Cases and Live Demo_2025.04.30.pdfMicrosoft AI Nonprofit Use Cases and Live Demo_2025.04.30.pdf
Microsoft AI Nonprofit Use Cases and Live Demo_2025.04.30.pdf
TechSoup
 
Salesforce Data Cloud- Hyperscale data platform, built for Salesforce.
Salesforce Data Cloud- Hyperscale data platform, built for Salesforce.Salesforce Data Cloud- Hyperscale data platform, built for Salesforce.
Salesforce Data Cloud- Hyperscale data platform, built for Salesforce.
Dele Amefo
 
Who Watches the Watchmen (SciFiDevCon 2025)
Who Watches the Watchmen (SciFiDevCon 2025)Who Watches the Watchmen (SciFiDevCon 2025)
Who Watches the Watchmen (SciFiDevCon 2025)
Allon Mureinik
 
How can one start with crypto wallet development.pptx
How can one start with crypto wallet development.pptxHow can one start with crypto wallet development.pptx
How can one start with crypto wallet development.pptx
laravinson24
 

Dependency Injection and Autofac

  • 1. Dependency Injection and Autofac By: Keith Schreiner & Jeff Benson
  • 2. Goals 1) Provide basic info about DI. 2) Get you excited to use DI. 3) Get you to recommend using a DI tool (like Autofac) on your next project.
  • 3. Why? DI enables loose coupling, and loose coupling makes code more maintainable. Great for medium or big applications that need to be maintained. DI can change the way you write software. (Good) Instead of bottom-up, DI allows for top-down. (DB to UI) (UI to DB)
  • 4. Definition of Dependency Injection • A set of object-oriented software design principles & patterns that enable us to develop loosely coupled code, by passing or setting the dependencies of a program. • Instead of components having to request dependencies, they are given (injected) into the component. • (Sounds complex, but really isn’t.)
  • 5. Explain Dependency Injection to a 5-year old When you go and get things out of the refrigerator for yourself, you can cause problems. You might leave the door open, you might get something Mommy or Daddy doesn't want you to have. You might even be looking for something we don't even have, or which has expired. What you should be doing is stating a need, "I need something to drink with lunch," and then we will make sure you have something when you sit down to eat. From John Munsch on Stack Overflow
  • 6. DI is a set of Design Patterns & Principles Making code more maintainable through loose coupling is the core motivation behind many classic design patterns (dating back to 1995 and the Gang of Four): Program to an interface, not an implementation
  • 7. Property Injection public partial class SomeClass When a dependency is optional. { private ISomeInterface dependency; + Simple to understand. public ISomeInterface Dependency - But limited in its use. { get - Not simple to implement robustly. { if (this.dependency == null) this.Dependency = new DefaultSome(); return this.dependency; } set { if (value == null) throw new ArgumentNullException("value"); if (this.dependency != null) throw new InvalidOperationException(); this.dependency = value; } } public string DoSomething(string message) { return this.Dependency.DoStuff(message); }
  • 8. SOLID & DI S Single Responsibility Principle • An object should have only a single responsibility. Open/Closed Principle O • Software entities should be open for extension, but closed for modification. Liskov Substitution Principle L • Objects in a program should be replaceable with instances of their subtypes without altering the correctness of that program. Interface Segregation Principle I • Many client specific interfaces are better than one general purpose interface. Dependency Inversion Principle D • One should depend on abstractions; do not depend upon concretions.
  • 9. Benefits of DI • • • • • • Late Binding Extensibility Parallel Development Maintainability Testability Code Structure – Interface Driven Development – All dependencies registered in one spot – Never have to write code to “new-up” objects.
  • 10. Negatives of DI • Learning curve. • Constructor code may look more complicated. • Code may seem “magical” for developers who do not know DI. • Is over-kill for very small projects. • Makes classes harder to re-use outside of a DI app.
  • 11. DI Myths • Not just relevant for late binding. • Not just relevant for unit testing. • Is not just a Service Locator.
  • 12. DI or Inversion of Control Sometimes DI and IoC are interchanged. IoC = Inversion of Control IoC = A framework controls program flow. IoC includes DI.
  • 13. Example A “Hello World” or any small example will do a horrible job of showing off DI. But here it is… [Shipping with Weather] 1. 2. 3. 4. 5. Write some Interfaces Implement some classes. Class Foo : IFoo Create a class to load the modules In this loading-class, register and configure your classes In the startup of your program, register this loading-class
  • 14. DI Dimensions (Ideas) 1) Object Composition 2) Object Interception 3) Object Lifetime Management a) InstancePerDependency a) SingleInstance b) c) InstancePerLifetimeScope InstancePerMatchingLifetimeScope
  • 15. .NET DI Containers There are many good choices (feel free to try others): • Castle Windsor (Popular, but big. Good choice) • Structure Map (Oldest [2004] .net DI container, popular) • Spring.NET (port from Java, big learning curve) • Unity (From Microsoft’s P&P team, solid but different) • Ninject (Good, simple to use) • Autofac (Most recent, based on C# 3, gaining popularity) Plus about 10 other not-as-popular ones.
  • 16. Autofac • Get it: http://autofac.org or NuGet. • What you get: a zip with binaries. • Platforms: .NET 3.5 SP1, .NET 4, Silverlight 3 & 4, Windows Phone 7. • Cost? Free. It is open source. • Help? http://autofac.org or StackOverflow • ReSharper also really helps speed-up dev.
  • 17. Autofac Integration Autofac has additional packages for integration: • ASP.NET WebForms • ASP.NET MVC3 • WCF (Windows Communication Foundation) • And others
  • 18. Using Autofac 1) Develop your code using DI-friendly patterns 2) Configure Autofac 1) 2) Create a ContainerBuilder Add configuration. • Tell the ContainerBuilder your objects, and interfaces, and lifetimes, etc. 3) Create a Container (from the ContainerBuilder) 4) Use the Container to resolve components (objects).
  • 19. Configuration • Code • Auto (using an assembly) • XML Recommend: Use Package config Autofac.Module
  • 20. Registering Dependencies in Autofac 1) Type, lambda expression, specific instance, or auto-register builder.RegisterType<TaskController>(); builder.Register( c => new TaskController(c.Resolve<ITaskRepository>()) ); builder.RegisterInstance(new TaskController()); builder.RegisterAssemblyTypes(typeof(IPresenter).Assembly) .Where(t => t.IsAssignableTo<IPresenter>()) .OnActivating(e => ((IPresenter)e.Instance).SetupView());
  • 22. Applying Autofac • Let’s see how we can use DI and Autofac on a big project. • First, how one might normally create the project without using DI. • Second, how to create it with DI.
  • 23. Common 3-tier App without DI • Not “wrong,” but not an inherent guarantee of loose coupling • Build Data, then BI, then UI. (bottom-up) • The layers really are tightly coupled together, like the domain entities from the data layer. • Hard to test. • Config file dependent.
  • 24. Advanced Configurationg (for more complex APIs) Builder.RegisterType<Chicken>().As<IIngredient>(); Builder.RegisterType<Steak>().As<IIngredient>(); Last one wins, unless you ask for an array of IIngredient’s. Builder.RegisterType<Chicken>().Named<IIngredient>(“chicken”); Builder.RegisterType<Steak>().Named<IIngredient>(“steak”); Can also “name” your registrations. This allows you to do many things when working with multiple components with the same interface, often with lambda expressions. Builder.RegisterType<Meal>().As<IMeal>().WithParameter( (p,c)=>true,(p,c)=>new[] {c.ResolveNamed<IIngredient>(“chicken”), c.ResolveNamed<IIngredient>(“steak”)}); Also, if your constructor has a string, number, enum as a parameter, it is possible to register that string as a component, or pass them in as a NamedParameter.
  • 25. Summary • Use DI to enable loose coupling and to make code more maintainable. • DI is just a set of good patterns, like programming to an interface. • Using DI can change the way you code (for the better) because of the good patterns. • There are several DI tools to choose from and Autofac is good choice. • Use DI on your next project!
  • 26. Resources • Autofac.org • Book: “Dependency Injection in .NET” by Mark Seemann. http://www.manning.com/seemann/ • Podcast with Autofac creator http://www.dotnetrocks.com/default.aspx?showNum=450 • Advanced relationship types with Autofac http://nblumhardt.com/2010/01/the-relationship-zoo/ • Stackoverflow.com

Editor's Notes

  • #3: Keith does “Overview”Jeff dos “Goals”
  • #11: Jeff
  • #17: Jeff
  • #19: Jeff does the rest of these slides.