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();
|
|
|
|
|
|
|
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() |
||||||
|
|
|
You need to use a
or without LINQ:
(assuming the data is a string... if not, use If you have a
|
||
|
|