ASP.NET MVC: Configuring ASP.NET MVC 4 Membership with a SQL CE Database
Image by Infocux Technologies | Some Rights Reserved Recently I needed to set up an ASP.NET MVC project to work with a SQL CE database. I also needed to use SQL CE as the backing store for the ASP.NET Membership feature. This was...
Customizing Routes in ASP.NET MVC
Image by ~uminotorino Some rights reserved Routing is one of the primary aspects of the MVC framework which makes MVC what it is. While that is possibly over-simplifying, the routing framework is where the MVC philosophy of...
Routing Basics in ASP.NET Web API
Image by Ron Reiring As noted in Routing Basics in ASP.NET MVC, routing in ASP.NET Web API is functionally very similar to the standard MVC routing. Understanding the MVC routing model will provide most of what you need to know...
Routing Basics in ASP.NET MVC
Image by Andrew Morton When getting started with ASP.NET MVC and/or the ASP.NET Web API, it can be overwhelming trying to figure out how it all works. These frameworks offer powerful features, and abstract away a good deal of...
Building Out a Clean, REST-ful Web Api Service with a Minimal Web Api Project
Image by Matt MacGillivray | Some Rights Reserved In a previous post, we saw how to create a minimal ASP.NET WebApi project template, so that we can avoid some of the bloat and complexity inherent in the standard VS WebApi...
Creating a Clean, Minimal-Footprint ASP.NET WebAPI Project with VS 2012 and ASP.NET MVC 4
Image by frankieleon | Some Rights Reserved The default WebApi project template that ships with Visual Studio 2012 has a lot to offer in some respects, but is less than ideal for either learning your way through the impressive...