Tag Archives: HTML5
Chlodny series Day 5: Brief: What is ASP.NET Web API?
ASP.NET Web API is the new product born from WCF for jQuery. Web API allows services to be created over HTTP rather then utilizing a service contract (SOAP or WS). Web API creates an avenue for developers to expose data … Continue reading
Chlodny series Day 4: Entity Framework Code First Migration
Before Entity Framework Code First Migration was introduced in version 4.3. Developers had a few options if the domain model was different from the database schema. CreateDatabaseIfNotExists : Pretty self explanatory, if on application start Entity Framework cannot find the … Continue reading
Chlodny series Day 3: Connect Web Api to Entity Framework
Now that the existing database has been reversed engineered and the domain classes are set, it is time to wire up those domain classes to the main project. Add the DataAccess project to the ChlodnyWebApi project.
Chlodny series Day 2: Reverse Engineer Existing Database
To continue on with the series of creating an application that utilizes ASP.NET Web API. This demo application utilizes the Chinook database. In order to use Entity Framework code first with the lease amount of hassle the application will use … Continue reading
Chlodny series Day 1: Setup and Explanation
Purpose: Create a application that shows off the awesome sauce of Entity Framework Code Frist, Entity Framework Migration, MVC4 WebApi, and HTML5 + other clients This series is to show off a step by step example application that will be … Continue reading