You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You shouldn't have to pass an IDictionary for the initializers - that's too much. What you really need is a Func<Type, Func<object, object>> or some custom IInitializerResolver interface that only exposes a couple of methods like bool CanResolve(Type) and Func<object, object> Resolve(Type).
Can you add an overloaded method that accepts such a parameter. Thanks.
The text was updated successfully, but these errors were encountered:
You shouldn't have to pass an IDictionary for the initializers - that's too much. What you really need is a Func<Type, Func<object, object>> or some custom IInitializerResolver interface that only exposes a couple of methods like bool CanResolve(Type) and Func<object, object> Resolve(Type).
Can you add an overloaded method that accepts such a parameter. Thanks.
The text was updated successfully, but these errors were encountered: