up vote 3 down vote favorite
share [g+] share [fb]

I have a dataview defined as:

DataView dvPricing = historicalPricing.GetAuctionData().DefaultView;

This is what I have tried, but it returns the name, not the value in the column:

dvPricing.ToTable().Columns["GrossPerPop"].ToString();
link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

You need to specify the row for which you want to get the value. I would probably be more along the lines of table.Rows[index]["GrossPerPop"].ToString()

link|improve this answer
Ok, Thanks, I was afraid of that. – Xaisoft Dec 22 '08 at 20:59
Why afraid? How would you otherwise get the value? – configurator Dec 22 '08 at 21:26
I know. Just thinking to self. – Xaisoft Dec 22 '08 at 21:33
feedback

You need to use a DataRow to get a value; values exist in the data, not the column headers. In LINQ, there is an extension method that might help:

string val = table.Rows[rowIndex].Field<string>("GrossPerPop");

or without LINQ:

string val = (string)table.Rows[rowIndex]["GrossPerPop"];

(assuming the data is a string... if not, use ToString())

If you have a DataView rather than a DataTable, then the same works with a DataRowView:

string val = (string)view[rowIndex]["GrossPerPop"];
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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