infuerno.github.io

Pluralsight: ASP.NET MVC 4 Fundamentals

References

Keyboard shortcuts

Curl options

Introduction to ASP.NET MVC 4 Part 1

public class DepartmentDb : DatabaseContext, IDepartmentDataSource
{
    public DbSet<Employee> Employees { get; set; }
    public DbSet<Department> Departments { get; set; }

    public IQueryable<Employee> IDepartmentDataSource.Employees { get { return Employees; }}
    public IQueryable<Department> IDepartmentDataSource.Departments { get { return Departments; }}
}

Introduction to ASP.NET MVC 4 Part 2

The ASP.NET WebAPI

Content negotiation

Parameter binding