After working with FluentNHibernate and seeing examples of registries in StructureMap, I started craving the same thing for my registrations with Windsor. Our registrations often look like the following: public static void Register(IWindsorContainer container) { container.Register(Componen... container.AddComponent<I... Foo>(); ... } There are a few things I don’t like about this approach: Passing a container around through static methods is a hack. ......
Note: This article is a continuation of the series on IJoinedFilter: IJoinedFilter AutoMapFilter meet IJoinedFilter In-lining mapping and injection aspects – yuck! After implementing several aspects of controller actions as compos-able filters, it became apparent that controlling the order would be import. One of the latest additions is a filter to build up a view model property with data aspects. An example would be a select list for states on a person edit view. Normally, the states would be fetched ......