I have the following code:
long[] conIds = GetIDs();
dc.ExecuteCommand("UPDATE Deliveries SET Invoiced = NULL WHERE ID IN {0}",conIds);
I'd expect that to work, but the executecommand statement throws an exception stating that
A query parameter cannot be of type int64[].
Why is this?