This repository was archived by the owner on Dec 14, 2018. It is now read-only.

Description
After "#597 Remove ActionResultHelper", helpers in ActionResultHelper are merged to Controller.cs.
We find that actually return new ViewResult(_serviceProvider, _viewEngine) in public ViewResult View(string view, object model) is useless. And return new ViewResult() is enough because ViewResult itself has DI on its ctor and the services can be reached through Context.ApplicationServices.