Click here to Skip to main content
15,886,017 members
Articles / Web Development / HTML5

HTML5 SVG + ASP MVC Web API

Rate me:
Please Sign up or sign in to vote.
4.33/5 (3 votes)
13 Jun 2012CPOL2 min read 31.2K   856   7  
A quick article regarding new features in HTML5 and ASP MVC 4.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Http;
using System.Web.Mvc;
using CountryProject.Models;

namespace CountryProject.Controllers
{
    public class ContinentsController : ApiController
    {
        //GET /geography/continents
        public IQueryable<Continent> Get()
        {
            return Geography.Continents.AsQueryable();
        }

        //GET /geography/continents/{id}
        public Continent Get(string id)
        {
            Continent continent = Geography.Continents.Where(c => string.Compare(c.Name, id, true) == 0).Single();
            return continent;
        }

        //GET /geography/continents/{continentID}/countries
        public IQueryable<Country> GetCountries(string continentID)
        {  
            Continent continent = Geography.Continents.Where(c => string.Compare(c.Name, continentID, true) == 0).Single(); 
            return continent.Countries.AsQueryable();
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
Poland Poland
I've been programming since 2004. Delphi, C, C++. Now I'm a big fan of C# and ASP MVC.

Comments and Discussions