After migrating the layout page, it’s time to start working on the individual pages. I will start with the About page since it is the easiest and contains just a view with some static text. It’s all a matter of copying the controller and the view from the MVC5 solution to the new one.

Next I’ll work on the software details page. I did plan to start originally with the software overview page, but since that page makes use of a custom HTML helper I have decided to keep that for the next post.
So again, I copy over the controller code and this time the view model as well. Inside the view, we need to change the reference to Microsoft.AspNetCore.Mvc instead of System.Web.Mvc. Everything else stays the same, apart from the response caching part, which in my case I had to change this:
[OutputCache(Duration = 3600, VaryByParam = "softwareId")]
to this:
[ResponseCache(Duration = 3600, VaryByQueryKeys = new string[] { "softwareId" })]
As with mostly everything else, every feature that we want to use needs to be declared explicitly in .Net Core. For caching we need to reference Microsoft.AspNetCore.ResponseCaching and set it up in the Startup class. Add app.UseResponseCaching();
before app.UseMvc...
and services.AddResponseCaching();
before services.AddMvc()
.
Since I am also reading data from the data provider class, I will also need to add the required dependency injection configuration.
services.AddTransient<ISoftwareProvider, EFSoftwareProvider>();
Finally, I copy the views and notice that everything looks ok. It has to work, but then I realise that I did not set up the route to handle this detail page. However, adding a route is just as simple as it ever was:
routes.MapRoute(
"Software details",
"Software/{softwareId}/{title?}",
new { controller = "Software", action = "Details" });
And once again, I managed to migrate a page in a few easy steps.