How can I send "List" to SP in .NET? I used loop util now, but it has low performance beacuse of overfull I/O Connection. So, I think that Sending "List" to DB Server is solution.
(Under code is Sample)
ISession session = ....;
Foreach(ProductDto PD in insertList)
{
IQuery query = session.CreateSQLQuery("exec Log @A=:a, @B=:b");
query.SetDateTime("A", ProductDto.a);
query.SetString("B", ProductDto.b);
query.ExecuteUpdate();
}