Skip to content

Instantly share code, notes, and snippets.

@mikeobrien
Created April 7, 2011 02:50
Show Gist options
  • Save mikeobrien/906937 to your computer and use it in GitHub Desktop.
Save mikeobrien/906937 to your computer and use it in GitHub Desktop.
// http://stevesmithblog.com/blog/how-do-i-use-structuremap-with-asp-net-mvc-3/
return _container.GetAllInstances<object>().Where(s => s.GetType() == serviceType);
// Isn't this a better way to do it?
return _container.GetAllInstances(serviceType).Cast<object>();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment