Can Castle Windsor do value injection?
For example, say I have a model object for an Employee with properties I want auto-mapped to an interface describing a View for MVC.
I want a way for Employee.FirstName to be set automatically set to IEmployeeView.FirstName when my model data changes.
Right now I'm using ValueInjecter, but I'd like to drop the dependency on the assembly if Windsor can do it. (I'm already using Windsor for IoC and other AOP stuff)