Golf Tracker - Overview
Building an ASP.NET MVC 2 application from scratch
This is the overview for the series of videos I'll be creating that shows how I build a complete ASP.NET MVC 2 application from scratch before your very eyes!What I'll be building is called Golf Tracker. Golf Tracker will be an application that enables you to enter golf course information into a database, and players into the database, and then enter players scores for the rounds of golf that they played and track their results.
This application will be built as an n-Tier framework meaning that it will contain separated tiers for data access, services and presentation. This type of framework makes refactoring and development easier by isolating the various concerns. This also makes it easy to test individual tiers.
I will be using a variety of technologies from Linq-to-Sql for data access to jQuery for Ajax calls in the UI.