I have html page consisting of JqGrid. JqGrid is bind through JSon data. There are multiple rows in a grid. User can edit the values in Grid and when he is finally done with manipulation then data is going to post back at Server using Web Api.
Presently I am using the Post method with following signature :-
public void Put(JObject u)
{
//here iteration is made on Jobject data and finally changes saved to DB
}
Please suggest if this fine with Web Api context or there is better way to update collection in Web Api.