In my previous post, Using Microsoft ASP.NET Web API 2 Help Page – Part 2 I mentioned that in MVC5, the HelpPage API, you no longer to specify the response type as part of the HelpPageConfig. This was simplier than I thought…
In my previous post, Using Microsoft ASP.NET Web API 2 Help Page – Part 2 I mentioned that in MVC5, the HelpPage API, you no longer to specify the response type as part of the HelpPageConfig. This was simplier than I thought…
This post is a continuation of my previous post Documenting the WebApi using Microsoft ASP.NET Web API 2 Help Page Including multiple XML files The first change that I wanted to make was that the HelpPage is only reading from one…
Typescript 0.9.5 has been released by Microsoft and is available to download here: http://www.microsoft.com/en-us/download/details.aspx?id=34790, With the release notes available here: http://blogs.msdn.com/b/typescript/archive/2013/12/05/announcing-typescript-0-9-5.aspx After downloading, and installing the latest version, I now have two typescript compile error within the MotorDB Project: Type…
This post will be to continue putting in place some of the plumbing for the MotorDB application. In previous post I created a RESTful web service to return policy data to the client. As this could be seen as a…
Now that Visual Studio 2013 has been officially released, one of the new features that I have been looking forward to use, is the new attribute based routing My MotorDB project was created using Visual Studio 2012. So after installing…
Its been a while since I have had the opportunity to work on the MotorDB project. But before continue with anything, its time to put in an IoC container that should have done at the beginning. Because I want to,…
In part 1 of setting up and creating the MotorDB application, Typescript was used. To help demonstrate the application, it is hosted at appharbor However after appharbor pulled down the latest code from GitHub, the sample data was not being displayed.…
This is the continuation of the previous post. Now that we have the data, and have populating our Model, all that is required is to create the template to use. If you are new to Knockout, the following sites will…
In a previous post, I started a restful API that returns policy information. Now its time to starting calling the API from client. First thing need is to get all the typing definition files. Any definition file required can be…
I wanted to start on my project, and I thought the first thing to start on was to display a list of policies. As I want to have a Single Page Application, I have started out creating an API. Roy Fielding is…