Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have created a stored procedure that takes a table valued parameter that is a table with a single column of type int. The idea is to simply pass a list of ids into the store procedure and allow the sp to work with the data. However, in the case where there is no data to pass in, I am encountering problems (things work correctly when I have data). I am converting a List to an IEnumerable, and binding that to the table valued parameter for the sp. I have tried to bind an empty List, which resulted in the error

System.ArgumentException: There are no records in the SqlDataRecord enumeration. To send a table-valued parameter with no rows, use a null reference for the value instead.

I then tried to bind a null value (which I thought was what the above message was getting at), but that only resulted in a different error message

System.NotSupportedException: DBNull value for parameter '@MainItemIdList' is not supported. Table-valued parameters cannot be DBNull.

It does not appear that you can declare the table valued parameter as nullable in the sp declaration. What is the correct method for binding an empty list to at table valued parameter?

share|improve this question

2 Answers

The trick is: don’t pass in the parameter at all. The default value for a table-valued parameter is an empty table.

I realise that this is probably far too late to help you, but hopefully it will save someone else some time. The exception message is extremely unhelpful.

share|improve this answer
5  
It never hurts to add a new answer or improve one. The information is still relevant and someone else will find it useful (that's the whole point of this site!). +1 – Jason Down Jul 19 '11 at 18:58
Any idea how to do this if using plain old table adapters? TableAdapter templates a CLR proxy function with the same signature as the SP, and it expects a not-null value. Passing null or DbNull.Value throws an error. – Boris B. Oct 25 '11 at 14:26
Up 1. This is exactly what I needed to do - tested and it works great. – Jim Evans Oct 25 '11 at 18:17

I believe you can't just take a List<T> (or List<int> in this case) and return it as an IEnumerable. You need to create an object that inherits from List<T> and implements IEnumerable<SqlDataRecord>. Then you can define the following:

IEnumerator<SqlDataRecord> IEnumerable<SqlDataRecord>.GetEnumerator()
{
    // code to create and yield an SqlDataRecord object
    // The SqlDataRecord object should have a schema that matches 
    // the user-defined table type that the table-valued pair is declared as
}

When ExecuteNonQuery is called to run a stored procedure with a SqlDbType.Structured parameter (table-valued parameter), the collection passed for the parameter value is expected to implement IEnumerable<SqlDataRecord> so that IEnumerable<SqlDataRecord>.GetEnumerator can be called internally to fetch each new record to be sent over to the server.

I'm not sure if this gets by the empty enumeration, but I believe it is the way you are supposed to create a collection for a TVP.

share|improve this answer
3  
I don’t think the OP has any trouble creating an IEnumerable<SqlDataRecord>. Doesn’t answer the question. -1. – Daniel Cassidy May 23 '11 at 16:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.