有没有办法将列表对象作为存储过程的参数传递?
例如,
List<class1> Allobj = new List<class1>();
// assume Allobj .Count=5,(5 class1 objects)
现在将存储过程称为
intResult = _helper.ExecuteNonQuery(base.Transaction, CommandType.StoredProcedure, "usp_InsertpurchaseEnquirydetails", Allobj );
还是有任何其他方法可以传递列表(至少添加到多维 sqlparameter 数组?
如果可能,如何传递以及如何从存储过程中对其进行迭代?