Inject Services in Partial Controllers

You can use runtime DI like this (in a method of the partial controller):

var myService = (IMyService)HttpContext.RequestServices.GetService(typeof(IMyService));