How much is the actual memory / performance gain in an ASP.NET MVC controller when using these two different ways of declaring the Model for a view?
User user = userService.GetByID(id);
return View(user);
or
return View(userService.GetById(id));
I'm supposing that the last one is a bit more performant as we do not initialize an object, however the first one is more readable. Would this even matter on a webserver with thousands of visitors?