SlideShare a Scribd company logo
Common ASP.NET
       Design Patterns


       Steve Smith
       @ardalis | ardalis.com
       Telerik
http://flic.kr/p/4MEeVn
Design Patterns




http://flic.kr/p/8XgqKu
Stages of Learning

Stage Zero - Ignorance

Stage One - Awakening

Stage Two - Overzealous

Stage Three – Mastery



http://flic.kr/p/6StgW5
Language




http://flic.kr/p/6UpMt9
Actual Usage
 Twitter Poll in 2011 w/342 responses
    http://twtpoll.com/r/t7jzrx
                                   Votes
     250
     200
     150
     100
       50
                                           Votes
        0
Common Design Patterns
0.Singleton
1.Strategy
2.Repository
3.Proxy        (Of course there are many others!)

4.Command
5.Factory
(Singleton)
Singleton: Intent

 Ensure a class has only one instance

 Make the class itself responsible for
  keeping track of its sole instance

 “There can be only one”
Singleton Structure (not thread-safe)
How Singleton Is Used

 Call methods on
  Instance directly

 Assign variables to
  Instance

 Pass as Parameter
Singleton Structure
(thread-safe and fast)




 Source: http://csharpindepth.com/Articles/General/Singleton.aspx
Singleton Consequences
 The default implementation not thread-safe
     Avoid in multi-threaded environments
     Avoid in web server scenarios (e.g. ASP.NET)


 Singletons introduce tight coupling among collaborating
  classes
                                                   Shameless Plug:
                                                  But why would you
                                               Telerik JustMock can be
                                               intentionally write code
 Singletons are notoriously difficult to test usedcan mocktest with
                                                you to only and test
    Commonly regarded as an anti-pattern      certainSingletons tools?
                                                        premium


 Violate the Single Responsibility Principle
     Class is responsible for managing its instances as well as whatever it
      does


 Using an IOC Container it is straightforward to avoid the
  coupling and testability issues
Managing Object Lifetime
 Using an IOC Container
Strategy




http://flic.kr/p/6spkwo
Strategy: Intent
 Encapsulate a family of related algorithms

 Let the algorithm vary and evolve independently from the
  class(es) that use it

 Allow a class to maintain a single purpose
    Single Responsibility Principle (SRP)
    Also enables Open/Closed Principle (OCP)
    Learn more about SRP and OCP here:
        http://pluralsight.com/training/Courses/TableOfContents/principles-oo-design
Strategy : Structure
Strategy : Common Usage
 Dependency Inversion and Dependency Injection

 Decouple class dependencies and responsibilities

Refactoring Steps
 Create interfaces for each responsibility
 Inject the implementation of the interface via the constructor
 Move the implementation to a new class that implements the
  interface
Hidden Dependencies
 Classes should declare their dependencies via their
  constructor

 Avoid hidden dependencies
    Anything the class needs but which is not passed into constructor


 Avoid making non-stateless static calls
 Avoid directly instantiating classes (except those with no
  dependencies, like strings)

    Instead, move these calls to an interface, and call a local instance of the
     interface
“New is Glue”
                            “new” creates tight coupling
                            between classes


Be conscious of the
consequences of using
“new”

If you need loose
coupling, replace
“new” with Strategy
Pattern




http://flic.kr/p/aN4Zv
Repository
Data Access Evolution
No separation of concerns:                       Compile Time

                                                   Runtime
 Data access logic baked directly into UI
    ASP.NET Data Source Controls
    Classic ASP scripts                         User Interface

 Data access logic in UI layer via codebehind
    ASP.NET Page_Load event
    ASP.NET Button_Click event




                                                   Database
Data Access : Helper
           Classes                     Compile Time
 Calls to data made through a
  utility                                Runtime

 Example: Data Access
  Application Block (SqlHelper)      User Interface


 Logic may still live in UI layer

                                      Helper Class
 Or a Business Logic Layer may
  make calls to a Data Access
  Layer which might then call the
  helper

                                       Database
What’s Missing?                           Compile Time

            Abstraction!                                 Runtime
 No way to abstract away
  data access                               User Interface

 Tight coupling

 Leads to Big Ball of Mud           Core              Infrastructure
  system                         IFooRepository      SqlFooRepository

 Solution:
    Depend on interfaces, not
     concrete implementations
    What should we call such                 Database
     interfaces? Repositories!
Repository
 A Data Access Pattern

 Separates persistence responsibility from business classes

 Enables
    Single Responsibility Principle
    Separation of Concerns
    Testability

 Frequently Separate Interfaces for Each Entity in Application
    E.g. CustomerRepository, OrderRepository, etc.
    Or using Generics: IRepository<TEntity>

 May also organize Repositories based on
    Reads vs. Writes
    Bounded Contexts
Repository - Example
Repository - Example
                                        (1)
                                        Create/extend an interface to represent
                                        the data access you need
                                                               (2)
                                                               Copy the
                                                               implementation from
                                                               your class into a new
                                                               class implementing this
                                                               interface.



(3)
Inject the interface using the
Strategy Pattern. Use the local field
of this interface type in place of
previous implementation code.
Where do Repositories Live?
 Place interfaces in Core
    Core includes Model classes and most business logic
    Core has no dependencies (ideally)


 Place implementation in Infrastructure
    Infrastructure references Core


 UI layer references both Core and Infrastructure
    Responsible for creating object graph, either manually or via an
     IOC Container
Proxy
Proxy
 A class that controls access to another

 Implemented via subclass or via delegation using a
  common interface

 Frequent use cases:
    Remote Proxy for web services / network calls
    Lazy loading implementations
    Security / access control
Proxy - Structure
Adding Caching to a
              Repository
 Caching is frequently added to query methods in repositories

 Caching logic is a separate concern and should live in a
  separate class from the main data access logic

 Proxy pattern provides a straightforward means to control
  access to the “real” data, versus the cache
Proxy – CachedRepository Implementation
Implementing with IOC
// Strategy Pattern with Proxy Pattern (using composition)
x.For<IAlbumRepository>().Use<CachedAlbumRepository>()
         .Ctor<IAlbumRepository>().Is<EfAlbumRepository>();
Command




http://flic.kr/p/5Yb5i
Command
 Represent an action as an object

 Decouple performing the action
  from the client that is issuing the
  command

 Common scenarios:
    Delayed execution
    Logging activity
    Enabling Undo / Revoke
     Transaction functionality
Command
Command : Usage
 Great for representing state transitions (the arrows below)



                                      Pending




                           Archived             Published
Factory




http://flic.kr/p/vGpC2
Factory: Intent
 Separate object creation from the decision of which object to
  create

 Defer creation of objects
    Only create them if and when needed


 Add new classes and functionality without breaking client code
    Only factory needs to know about new types available


 Store possible objects to create outside of program
    Configuration
    Persistent Storage
    Plug-in assemblies
Practice PDD
 Pain

 Driven

 Development




If it’s causing pain, fix it.
Design Patterns in Action

CODE WALKTHROUGH
A Tale from the

REAL WORLD
References
   Design Patterns, http://amzn.to/95q9ux
   Design Patterns Explained, http://amzn.to/cr8Vxb
   Design Patterns in C#, http://amzn.to/bqJgdU
   Head First Design Patterns, http://amzn.to/aA4RS6

Pluralsight Resources
 N-Tier Application Design in C# http://bit.ly/Msrwig
 Design Patterns Library http://bit.ly/vyPEgK
 SOLID Principles of OO Design http://bit.ly/OWF4la

 My Blog
     http://ardalis.com
Summary
 Design Patterns can be used during
  refactoring or initial design to improve code
  quality

 Become comfortable with a number of design
  patterns, but focus on the most common ones

 Use design patterns to address pain in your
  design, such as tight coupling or excessive
  repetition

 Design patterns can be combined in powerful
  ways, such as Strategy-Proxy-Repository

More Related Content

PPT
Design Patterns (Examples in .NET)
PPS
Design Patterns For 70% Of Programmers In The World
PPTX
Most Useful Design Patterns
PPTX
Design Pattern Mastery - Momentum Dev Con 19 Apr 2018
KEY
Spring AOP
PPTX
Gof design patterns
PPTX
Go f designpatterns 130116024923-phpapp02
PPTX
Factory Design Pattern
Design Patterns (Examples in .NET)
Design Patterns For 70% Of Programmers In The World
Most Useful Design Patterns
Design Pattern Mastery - Momentum Dev Con 19 Apr 2018
Spring AOP
Gof design patterns
Go f designpatterns 130116024923-phpapp02
Factory Design Pattern

What's hot (20)

PPS
Jump start to OOP, OOAD, and Design Pattern
PPTX
How I Learned To Apply Design Patterns
PDF
PPTX
Refactoring Applications using SOLID Principles
PDF
Effective Java, Third Edition - Keepin' it Effective
PPTX
Effective Java - Chapter 4: Classes and Interfaces
PPT
Design pattern in android
PPTX
Effective java
PDF
Design Patterns in iOS
PDF
Design patterns
ODP
Aspect-Oriented Programming
PDF
DIC To The Limit – deSymfonyDay, Barcelona 2014
PDF
Solid principles, Design Patterns, and Domain Driven Design
PDF
Mock Objects, Design and Dependency Inversion Principle
PPTX
SOLID Software Principles with C#
PPTX
Open Closed Principle kata
PDF
Distributed Programming (RMI)
PPT
Spring ppt
PPTX
Aspect Oriented Programming
PDF
The Open Closed Principle - Part 1 - The Original Version
Jump start to OOP, OOAD, and Design Pattern
How I Learned To Apply Design Patterns
Refactoring Applications using SOLID Principles
Effective Java, Third Edition - Keepin' it Effective
Effective Java - Chapter 4: Classes and Interfaces
Design pattern in android
Effective java
Design Patterns in iOS
Design patterns
Aspect-Oriented Programming
DIC To The Limit – deSymfonyDay, Barcelona 2014
Solid principles, Design Patterns, and Domain Driven Design
Mock Objects, Design and Dependency Inversion Principle
SOLID Software Principles with C#
Open Closed Principle kata
Distributed Programming (RMI)
Spring ppt
Aspect Oriented Programming
The Open Closed Principle - Part 1 - The Original Version
Ad

Similar to Common ASP.NET Design Patterns - Telerik India DevCon 2013 (20)

PPTX
Architecture and design
PPT
Designingapplswithnet
PDF
Framework Engineering
PPTX
Common design patterns (migang 16 May 2012)
PPTX
PPTX
PPTX
Software System Architecture-Lecture 6.pptx
PDF
Commonly used design patterns
PPTX
Sofwear deasign and need of design pattern
PPTX
Architecture Principles CodeStock
DOC
10265 developing data access solutions with microsoft visual studio 2010
PPTX
Introduction to Design Patterns
PDF
Oo aand d-overview
PPTX
Application Architecture April 2014
PPTX
Clean Code Part II - Dependency Injection at SoCal Code Camp
PDF
Nina Grantcharova - Approach to Separation of Concerns via Design Patterns
PPTX
Software Development: Beyond Training wheels
PPTX
Application Architecture
PDF
Framework Engineering_Final
PDF
Design Pattern Cheatsheet
Architecture and design
Designingapplswithnet
Framework Engineering
Common design patterns (migang 16 May 2012)
Software System Architecture-Lecture 6.pptx
Commonly used design patterns
Sofwear deasign and need of design pattern
Architecture Principles CodeStock
10265 developing data access solutions with microsoft visual studio 2010
Introduction to Design Patterns
Oo aand d-overview
Application Architecture April 2014
Clean Code Part II - Dependency Injection at SoCal Code Camp
Nina Grantcharova - Approach to Separation of Concerns via Design Patterns
Software Development: Beyond Training wheels
Application Architecture
Framework Engineering_Final
Design Pattern Cheatsheet
Ad

More from Steven Smith (20)

PPTX
Clean architecture with asp.net core by Ardalis
PDF
Finding Patterns in the Clouds - Cloud Design Patterns
PPTX
Introducing domain driven design - dogfood con 2018
PPTX
Introducing Domain Driven Design - codemash
PPTX
Improving the Design of Existing Software
PPTX
Introducing ASP.NET Core 2.0
PPTX
Decoupling with Domain Events
PPTX
Improving the Quality of Existing Software
PPTX
Improving the Quality of Existing Software
PPTX
Breaking Dependencies to Allow Unit Testing - DevIntersection Spring 2016
PPTX
Improving the Quality of Existing Software - DevIntersection April 2016
PPTX
Breaking Dependencies to Allow Unit Testing
PPTX
Improving the Quality of Existing Software
PPTX
A Whirldwind Tour of ASP.NET 5
PPTX
Domain events
PPTX
My Iraq Experience
PDF
Add Some DDD to Your ASP.NET MVC, OK?
PDF
Domain-Driven Design with ASP.NET MVC
PDF
Breaking Dependencies to Allow Unit Testing
PPTX
Improving The Quality of Existing Software
Clean architecture with asp.net core by Ardalis
Finding Patterns in the Clouds - Cloud Design Patterns
Introducing domain driven design - dogfood con 2018
Introducing Domain Driven Design - codemash
Improving the Design of Existing Software
Introducing ASP.NET Core 2.0
Decoupling with Domain Events
Improving the Quality of Existing Software
Improving the Quality of Existing Software
Breaking Dependencies to Allow Unit Testing - DevIntersection Spring 2016
Improving the Quality of Existing Software - DevIntersection April 2016
Breaking Dependencies to Allow Unit Testing
Improving the Quality of Existing Software
A Whirldwind Tour of ASP.NET 5
Domain events
My Iraq Experience
Add Some DDD to Your ASP.NET MVC, OK?
Domain-Driven Design with ASP.NET MVC
Breaking Dependencies to Allow Unit Testing
Improving The Quality of Existing Software

Recently uploaded (20)

PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PPTX
Big Data Technologies - Introduction.pptx
PDF
Unlocking AI with Model Context Protocol (MCP)
PDF
Encapsulation theory and applications.pdf
PDF
Advanced methodologies resolving dimensionality complications for autism neur...
PDF
Network Security Unit 5.pdf for BCA BBA.
PPT
Teaching material agriculture food technology
PDF
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
PDF
NewMind AI Weekly Chronicles - August'25 Week I
PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PDF
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
PDF
Empathic Computing: Creating Shared Understanding
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PDF
Machine learning based COVID-19 study performance prediction
PDF
MIND Revenue Release Quarter 2 2025 Press Release
DOCX
The AUB Centre for AI in Media Proposal.docx
PPTX
Understanding_Digital_Forensics_Presentation.pptx
Mobile App Security Testing_ A Comprehensive Guide.pdf
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
Big Data Technologies - Introduction.pptx
Unlocking AI with Model Context Protocol (MCP)
Encapsulation theory and applications.pdf
Advanced methodologies resolving dimensionality complications for autism neur...
Network Security Unit 5.pdf for BCA BBA.
Teaching material agriculture food technology
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
NewMind AI Weekly Chronicles - August'25 Week I
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
The Rise and Fall of 3GPP – Time for a Sabbatical?
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
Empathic Computing: Creating Shared Understanding
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
“AI and Expert System Decision Support & Business Intelligence Systems”
Machine learning based COVID-19 study performance prediction
MIND Revenue Release Quarter 2 2025 Press Release
The AUB Centre for AI in Media Proposal.docx
Understanding_Digital_Forensics_Presentation.pptx

Common ASP.NET Design Patterns - Telerik India DevCon 2013

  • 1. Common ASP.NET Design Patterns Steve Smith @ardalis | ardalis.com Telerik http://flic.kr/p/4MEeVn
  • 3. Stages of Learning Stage Zero - Ignorance Stage One - Awakening Stage Two - Overzealous Stage Three – Mastery http://flic.kr/p/6StgW5
  • 5. Actual Usage  Twitter Poll in 2011 w/342 responses  http://twtpoll.com/r/t7jzrx Votes 250 200 150 100 50 Votes 0
  • 6. Common Design Patterns 0.Singleton 1.Strategy 2.Repository 3.Proxy (Of course there are many others!) 4.Command 5.Factory
  • 8. Singleton: Intent  Ensure a class has only one instance  Make the class itself responsible for keeping track of its sole instance  “There can be only one”
  • 10. How Singleton Is Used  Call methods on Instance directly  Assign variables to Instance  Pass as Parameter
  • 11. Singleton Structure (thread-safe and fast) Source: http://csharpindepth.com/Articles/General/Singleton.aspx
  • 12. Singleton Consequences  The default implementation not thread-safe  Avoid in multi-threaded environments  Avoid in web server scenarios (e.g. ASP.NET)  Singletons introduce tight coupling among collaborating classes Shameless Plug: But why would you Telerik JustMock can be intentionally write code  Singletons are notoriously difficult to test usedcan mocktest with you to only and test  Commonly regarded as an anti-pattern certainSingletons tools? premium  Violate the Single Responsibility Principle  Class is responsible for managing its instances as well as whatever it does  Using an IOC Container it is straightforward to avoid the coupling and testability issues
  • 13. Managing Object Lifetime Using an IOC Container
  • 15. Strategy: Intent  Encapsulate a family of related algorithms  Let the algorithm vary and evolve independently from the class(es) that use it  Allow a class to maintain a single purpose  Single Responsibility Principle (SRP)  Also enables Open/Closed Principle (OCP)  Learn more about SRP and OCP here:  http://pluralsight.com/training/Courses/TableOfContents/principles-oo-design
  • 17. Strategy : Common Usage  Dependency Inversion and Dependency Injection  Decouple class dependencies and responsibilities Refactoring Steps  Create interfaces for each responsibility  Inject the implementation of the interface via the constructor  Move the implementation to a new class that implements the interface
  • 18. Hidden Dependencies  Classes should declare their dependencies via their constructor  Avoid hidden dependencies  Anything the class needs but which is not passed into constructor  Avoid making non-stateless static calls  Avoid directly instantiating classes (except those with no dependencies, like strings)  Instead, move these calls to an interface, and call a local instance of the interface
  • 19. “New is Glue” “new” creates tight coupling between classes Be conscious of the consequences of using “new” If you need loose coupling, replace “new” with Strategy Pattern http://flic.kr/p/aN4Zv
  • 21. Data Access Evolution No separation of concerns: Compile Time Runtime  Data access logic baked directly into UI  ASP.NET Data Source Controls  Classic ASP scripts User Interface  Data access logic in UI layer via codebehind  ASP.NET Page_Load event  ASP.NET Button_Click event Database
  • 22. Data Access : Helper Classes Compile Time  Calls to data made through a utility Runtime  Example: Data Access Application Block (SqlHelper) User Interface  Logic may still live in UI layer Helper Class  Or a Business Logic Layer may make calls to a Data Access Layer which might then call the helper Database
  • 23. What’s Missing? Compile Time Abstraction! Runtime  No way to abstract away data access User Interface  Tight coupling  Leads to Big Ball of Mud Core Infrastructure system IFooRepository SqlFooRepository  Solution:  Depend on interfaces, not concrete implementations  What should we call such Database interfaces? Repositories!
  • 24. Repository  A Data Access Pattern  Separates persistence responsibility from business classes  Enables  Single Responsibility Principle  Separation of Concerns  Testability  Frequently Separate Interfaces for Each Entity in Application  E.g. CustomerRepository, OrderRepository, etc.  Or using Generics: IRepository<TEntity>  May also organize Repositories based on  Reads vs. Writes  Bounded Contexts
  • 26. Repository - Example (1) Create/extend an interface to represent the data access you need (2) Copy the implementation from your class into a new class implementing this interface. (3) Inject the interface using the Strategy Pattern. Use the local field of this interface type in place of previous implementation code.
  • 27. Where do Repositories Live?  Place interfaces in Core  Core includes Model classes and most business logic  Core has no dependencies (ideally)  Place implementation in Infrastructure  Infrastructure references Core  UI layer references both Core and Infrastructure  Responsible for creating object graph, either manually or via an IOC Container
  • 28. Proxy
  • 29. Proxy  A class that controls access to another  Implemented via subclass or via delegation using a common interface  Frequent use cases:  Remote Proxy for web services / network calls  Lazy loading implementations  Security / access control
  • 31. Adding Caching to a Repository  Caching is frequently added to query methods in repositories  Caching logic is a separate concern and should live in a separate class from the main data access logic  Proxy pattern provides a straightforward means to control access to the “real” data, versus the cache
  • 32. Proxy – CachedRepository Implementation
  • 33. Implementing with IOC // Strategy Pattern with Proxy Pattern (using composition) x.For<IAlbumRepository>().Use<CachedAlbumRepository>() .Ctor<IAlbumRepository>().Is<EfAlbumRepository>();
  • 35. Command  Represent an action as an object  Decouple performing the action from the client that is issuing the command  Common scenarios:  Delayed execution  Logging activity  Enabling Undo / Revoke Transaction functionality
  • 37. Command : Usage  Great for representing state transitions (the arrows below) Pending Archived Published
  • 39. Factory: Intent  Separate object creation from the decision of which object to create  Defer creation of objects  Only create them if and when needed  Add new classes and functionality without breaking client code  Only factory needs to know about new types available  Store possible objects to create outside of program  Configuration  Persistent Storage  Plug-in assemblies
  • 40. Practice PDD  Pain  Driven  Development If it’s causing pain, fix it.
  • 41. Design Patterns in Action CODE WALKTHROUGH
  • 42. A Tale from the REAL WORLD
  • 43. References  Design Patterns, http://amzn.to/95q9ux  Design Patterns Explained, http://amzn.to/cr8Vxb  Design Patterns in C#, http://amzn.to/bqJgdU  Head First Design Patterns, http://amzn.to/aA4RS6 Pluralsight Resources  N-Tier Application Design in C# http://bit.ly/Msrwig  Design Patterns Library http://bit.ly/vyPEgK  SOLID Principles of OO Design http://bit.ly/OWF4la  My Blog  http://ardalis.com
  • 44. Summary  Design Patterns can be used during refactoring or initial design to improve code quality  Become comfortable with a number of design patterns, but focus on the most common ones  Use design patterns to address pain in your design, such as tight coupling or excessive repetition  Design patterns can be combined in powerful ways, such as Strategy-Proxy-Repository

Editor's Notes

  • #3: General, reusable solutions to common problemsNot a complete, finished solutionA template, recipe, or approach to solving certain problemsEach has a specific name, so we can discuss common elements of design using a common vocabulary
  • #4: Learning anything – a musical chord, a martial arts technique, etc.Zero: You used a what? Never heard of it.Awakening:Wow, I just learned how XYZ pattern can improve my design. I’m not really sure where it would work in my code, but I’m definitely looking.Overzealous:I totally “get” the XYZ pattern; I’m adding it everywhere I can shoehorn it into my code. My design’s gonna be better now, for sure!Mastery: In response to some specific design pain points, the XYZ pattern was a logical next step and was achieved through a simple refactoring.
  • #5: Design pattern names provide placeholders or complex abstractions and sets of refactorings. Consider the difference between:We have some tight coupling to the database here. We can probably fix it if we apply these refactorings;extract an interface, extract a method, Extract a class,Replace local with parameterORLet’s apply the Repository pattern to fix it.
  • #6: Used Regularly or Daily by most respondentsFactory (194)Repository (185)Iterator (139)Adapter/Wrapper (122)Observer (113)Command (106)Singleton (105)Strategy (101)Proxy (91)
  • #10: It’s possible for the new Singleton(); line to be called more than once.
  • #14: Here are three example registration commands using an IOC container, in this case StructureMap. If you’re not familiar with IOC containers, they’re basically just factories on steroids, which you configure to create instances of types according to certain rules.In the first case, one new instance of the type is created per thread, or per HTTP request. Thus, in an ASP.NET application, a new DbContext will be created with each new web request, but if we used this same code in a non-web context, such as in an integration test, it would create a single instance per thread. In the second case, the Singleton() call will literally configure the lifetime of the instance to be a singleton, with one and only one instance available for the life of this application. In the last, default case, each new request for an instance will get its own, separate instance of the requested type.The benefit of this approach is that it makes it very clear which objects are configured with which lifetimes, and none of the objects themselves are cluttered with these concerns. The resulting code has less repetition, is simpler, and its classes have fewer responsibilities.
  • #26: Note – this cannot easily be tested without an actual database instance in place.
  • #29: http://en.wikipedia.org/wiki/File:Proxy_concept_en.svg
  • #41: Apply patterns via refactoring,Not Big Design Up Front
  • #42: Show the MvcMusicStore applicationHg clone https://hg.codeplex.com/forks/ssmith/mvcmusicstorerepositorypattern 
  • #43: Talk about the CacheDependencyBug in AdSignia and how it was introduced by moving a hard-coded instantiation to a parameter, and then fixed by replacing the parameter with a Factory (lambda).