public ActionResult Index()
 {
     using (var ctx = ctxManager.GetSet <Movie>())
     {
         var movies = ctx.OrderBy(m => m.Title);
         return(View(movies));
     }
 }