
In this tutorial I'm going to illustrate how we can pass complex javascript objects to MVC controller.
I have two Model objects called Project and Employee as below.
public class Project
{
public long ProjectID { get; set; }
public string ProjectName { get; set; }
}
...