This was a surprise to discover that the following call didn't seem to remember the changes made to the field.
private void Foo(IEnumerable<Blopp> blopps)
{
foreach (Blopp blopp in blopps)
blopp.SomeField = PREFIX + blopp.SomeField;
String test = blopps.First().SomeField;
}
The test variable lacks the prefix when the array is obtained using LINQ to data. I need to evaluate the IEnumerable and make it a List in order to make the changes to the fields sustain. Why is it so? I would expect the program to recognize that the field is used later on and evaluate it.
private void Foo(IEnumerable<Blopp> _blopps)
{
List<Blopp> blopps = _blopps.ToList();
foreach (Blopp blopp in blopps)
blopp.SomeField = PREFIX + blopp.SomeField;
String test = blopps.First().SomeField;
}
_bloppsanIEnumerbaleonto? Making it a list might resolve an otherwise dynamically generatedIEnumerable. – Adam Houldsworth Jan 16 at 14:50