HTTP Status Codes in ASP.NET Web API - A Guided Tour
Come along with us on a guided tour of HTTP Status Codes in ASP.NET Web API. Learn what 200, 404, 501 mean and when to use them.
Come along with us on a guided tour of HTTP Status Codes in ASP.NET Web API. Learn what 200, 404, 501 mean and when to use them.
My group has been studying ASP.NET Web API for a major project we're working on, and part of learning about this tech stack is studying how HTTP works, which has been a nice refresher for us. A couple of my teammates asked me to clarify the HTTP Methods (e.
Let's use Areas to create semi-independent sections of our ASP.NET MVC applications!
The major project we've been working on had a non-unusual requirement: take these SQL database tables and convert them to enumerations we can use over a service. A quick Google search found some code that did exactly what we wanted, so of course we (ok, I) copied-and-pasted that code into
We've been searching for a way to audit changes made to our database, and one method we found was doing so via Entity Framework [http://www.asp.net/entity-framework] change tracking. Here's how to do it, what's required to set it up, and some drawbacks of this method. Let's get