I was working with a DataTable and noticed that Resharper recommended that I can convert a loop into a LINQ expression. I did so and it was rewritten in query expression syntax (simplified):
var test1 = from DataRow row in dt.Rows select row;
Personally, I prefer method syntax so rewrote it to this:
var test2 = dt.Rows.Select(row => row);
And it broke.
'System.Data.DataRowCollection' does not contain a definition for 'Select' and no extension method 'Select' accepting a first argument of type 'System.Data.DataRowCollection' could be found (are you missing a using directive or an assembly reference?)
Since query expression are translated to method calls, why is that the first works but not the second? I expected either both or neither to work which is obviously not the case.
DataRowCollection
implementsIEnumerable
, notIEnumerable<T>
. – Fax