Skip to content

Commit

Permalink
Merge pull request #144 from ChrisMancini/master
Browse files Browse the repository at this point in the history
Fix Broken Link
  • Loading branch information
jonorossi authored Jul 28, 2016
2 parents 0167c3a + 38e63bc commit aa9b8b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/typed-factory-facility.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Typed Factory Facility provides automatically generated [Abstract Factories](http://en.wikipedia.org/wiki/Abstract_factory_pattern) that you can use to create components in your code, while still remaining agnostic to the presence of the container. It is part of `Castle.Windsor.dll`.

:information_source: **Typed factories vs alternatives:** Use typed factories wherever you need to pull something from the container. Alternative approaches, like Service Locator, or referencing the container directly are both inferior to typed factories and should be avoided. [See this post for more in-depth discussion](http://devlicio.us/blogs/krzysztof_kozmic/archive/2009/12/24/castle-typed-factory-facility-reborn.aspx).
:information_source: **Typed factories vs alternatives:** Use typed factories wherever you need to pull something from the container. Alternative approaches, like Service Locator, or referencing the container directly are both inferior to typed factories and should be avoided. [See this post for more in-depth discussion](http://kozmic.net/2009/12/23/castle-typed-factory-facility-reborn/).

All the following code samples will assume that the following variable is in scope

Expand Down Expand Up @@ -44,4 +44,4 @@ kernel.AddFacility<TypedFactoryFacility>();
## Using typed factories

* [`interface`-based factories](typed-factory-facility-interface-based.md)
* [`delegate`-based factories](typed-factory-facility-delegate-based.md)
* [`delegate`-based factories](typed-factory-facility-delegate-based.md)

0 comments on commit aa9b8b3

Please sign in to comment.