1
I have an object with a list that will return me 3 or more items. I pass this object like this:
 var jsonObjs = JSON.stringify(arrayObj);     
  alert(jsonObjs);      
  CarregaNotas(jsonObjs);
function CarregaNotas(notas) {
           jQuery.ajax({
                   type: "POST",
                    url: "/Expedicao/Minuta/GeraNotas",
                    dataType: "json",
                    data: notas,
                    success: function (data) {
                        }
                    });
                }
            });
        }
How to take this list in the controller and pass or scan in the Model ? For every item I have to add an "And" or "In" to "Select"
