I am looking to do this:
container.Resolve();
When it does this, its going to inject a IDependency into the underlying entity object. However, the dependency st
Why don't you use the static factory extension?
var container = new UnityContainer(); container.AddNewExtension() .Configure() .RegisterFactory(container => DependencyFactory.GetValue());