Take advantage of init-only setters to make configuration options immutable in ASP.NET Core MVC 5 to avoid unnecessary assignments and eliminate opportunities for errors. Immutability makes code ...
In this second part on TDD for ASP.NET MVC, Eric Vogel covers how to implement unit tests for the remaining CRUD controller actions. Last time I wrote about test-driven development for ASP.NET MVC.
Handle unknown actions elegantly in ASP.NET 5 by creating routes that dynamically map to the views in your application. ASP.NET 5 is an open source web application development framework for building ...
The .NET 4.5 Framework introduced the new async/await asynchronous programming model. With ASP.NET MVC 4 comes the application of the async/await model to controller actions. A traditional ASP.NET MVC ...