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
Currently As(Func<Type, IEnumerable<Type>> selector); allows to specify multiple types, but all of them are registered as separate instances. This causes a problem for me with singleton lifetime as now I have multiple objects.
It feels like it should set up type forwarding similar to how ILifetimeSelector AsSelfWithInterfaces(); does.
What are your thoughts on this?
The text was updated successfully, but these errors were encountered:
Currently
As(Func<Type, IEnumerable<Type>> selector);
allows to specify multiple types, but all of them are registered as separate instances. This causes a problem for me with singleton lifetime as now I have multiple objects.It feels like it should set up type forwarding similar to how
ILifetimeSelector AsSelfWithInterfaces();
does.What are your thoughts on this?
The text was updated successfully, but these errors were encountered: