Tagged Questions
1
vote
1answer
528 views
How should I pass a user-defined type to SqlParameterCollection.AddWithValue?
I have a custom data type called StudentID, which has an implicit conversion to string.
When I pass a StudentID instance to SqlCommand.Parameters.AddWithValue (as the value) and execute the command, ...