Post an array of objects to WebAPI using jQuery
This is quite niche but caught me out the other day.
Let’s say you have a person entity:
public class Person
{
public int Id { get; set; }
public string Name { get; set; }
public int Age { get; set; }
}
and you have a WebAPI method that takes in a group:
public class UsersController : ApiController
{
…