REST API Versioning
There are a couple of ways in versioning your API 1. Through REST URL . domain.com/v1/Customers, domain.com/v2/Customers 2. Through HTTP Header – add the version as part of Content-type 3. Add the version on the REST…
There are a couple of ways in versioning your API 1. Through REST URL . domain.com/v1/Customers, domain.com/v2/Customers 2. Through HTTP Header – add the version as part of Content-type 3. Add the version on the REST…
To me it looks like testing end to end scenario instead of modular function. A unit test might pass but it might fail or behaving differently when we start put into different context What it is?…
An article to keep you guys updated with the latest in .NET world http://weblogs.asp.net/scottgu/archive/2013/10/17/announcing-the-release-of-visual-studio-2013-and-great-improvements-to-asp-net-and-entity-framework.aspx There are few things that are very interesting to me: 1. OWIN and KATANA (OWIN is a standard interface between .NET web…
Great article in having multiple views within one page http://blog.yojimbocorp.com/2012/02/14/multiple-view-models-with-knockout/
To me jQuery is javascript library that helps the developer in interacting with HTML element/DOM but what library that can be used to help in manipulating the Javascript object?I found “Underscore.js” which can be found in…
So here is the situation, I need to build a personalization for the user where they can have different View files based on their user preference or alternatively they can pick their own View folder. To…
Great sample on how to implement Custom Principal in ASP.NET http://www.creatingsoftware.net/2007/11/aspnet-20-forms-authentication-keeping.html I’ll be using this technique to integrate with ASP.NET MVC so I can avoid using Session State completely
http://geekswithblogs.net/BlackRabbitCoder/archive/2011/06/16/c.net-fundamentals-choosing-the-right-collection-class.aspx