public List Regions { get; set; }
in model called News.An Region Model is
public class Region
{
public i
var regionList = [];
for (var i = 0; i < region.length; i++) {
var item = {
Id: region[i].Id,
Name : region[i].Name,
}
regionList.push(item);
}
regionList = JSON.stringify({ "item": regionList });//Here "item" name should match the parameter name in your Action method name in controller (item in your case.)
Then pass the regionList object to $.ajax as data.
$.ajax({
type: 'POST',
url: '@Url.Action("AddByRegion", "News")',
data: regionList,
contentType: false,
processData: false,
....
});