I\'m trying to write a JobActivator for HangFire using ServiceStack IoC and I\'m having trouble resolving from a type. I\'m sure this will be an easy answer for someone with mo
I think you want to get a T and to return a T
T
public T ActivateJob() where T : class { return _container.Resolve(); }