I am trying to do what I think is something simple, but I suspect I am simply too n00b to know that I am probably doing something wrong. I have a LINQ query return:
IQueryable<CWords> Result
Where CWords is a class I defined as follows:
public class CWords
{
public CWords(){}
public string _column1{ get; set; }
public float _column2{ get; set; }
public void fixData(){}
}
in my code, I am trying to modidy the _column2 field for each member of Result. I tried:
foreach (CWords item in Result)
{
item.fixData();
}
But of course that didn't work. item is not in the proper scope, so any changes I was making in fixData were not taking in Result.
Bcause you cannot index into IQueryable, my fix for this was to do the following:
var items = goodWords.ToList();
for (int i = 0; i < items.Count(); i++ )
{
items[i].fixData();
}
Is that the right way to do this?