Im unable to insert multiple records in a single transaction. Im using foreach in mapper
and I'm getting incorrect syntax near ','
.
I googled and found, in sybase it's not possible to insert multiple rows in sybase.
Insert statement looks like:
insert into Student(id,name)
values (1, Jon), (2,mike),(3,sam)
Comma next to value statement, is creating issue.