Is there a way to fill an array via a SqlDataReader (or any other C# ADO.NET object) without looping through all the items? I have a query that is returning a single column, and I want to put that into a string array (or ArrayList, or List, etc).
|
It is possible. In .NET 2.0+,
That said, the loop is still there, it's just hidden in |
|||||||||||
|
|
|
Since any |
|||
|
|
|
If you read your SqlDataAdapter into a DataTable:
Then you can use some of the toys in In uses a bit of Linq, so you will net .Net 3.5 or higher. |
||||
|
|
|
No, since It sounds like using a generic list and then returning the list as an array would be a good option. For example,
In response to your comment, calling ToArray() may be overhead, it depends. Do you need an array of objects to work with or would a generic collection (such as |
||||
|
|
|
You have to loop, but there are projects that can make it simpler. Also, try not to use ArrayList, use List instead. You can checkout FluentAdo for one: http://fluentado.codeplex.com
|
|||
|
|
|
Apparently, ever since .NET 1.1
This populates |
|||
|
|