Is it efficient or possible to share same DbParameter object with multiple commands?
views:
58answers:
2
A:
In general, if a class is mutable (ADO.NET parameters are quite definitely mutable), then it's a bad idea to do this.
By contrast, references to immutable classes can be shared between callers without any danger of corrupting data.
Christian Hayter
2009-11-25 13:47:54