What's Changed
- Resolve #11: Use Func<X, Y> to handle methods with parameters by @tillig in #12 - Aggregate service methods with open generic parameters now correctly use the parameters during resolution. Note that, due to the complexity of working with open generic arguments, the type matching/factory is delegated to core Autofac and will result in two resolution operations per call - one to resolve a
Func<X, Y>
based on the method parameter types (with closed generics); one to execute thatFunc<X, Y>
to resolve the actual object.
Full Changelog: v6.1.1...v6.1.2