Tagged Questions
The datacolumncollection tag has no wiki summary.
19
votes
1answer
5k views
Querying DataColumnCollection with LINQ
I'm trying to perform a simple LINQ query on the Columns property of a DataTable:
from c in myDataTable.Columns.AsQueryable()
select c.ColumnName
However, what I get is this:
Could not find ...
0
votes
1answer
167 views
How do I Pull a Single Column of Data out of a Filled DataSet?
How do I pull a single column of data out of a filled dataset?
I have a filled dataset object, with a variety of tables. I need to get all of the data that is stored in a particular column in one ...