I've scenario where the datatable may contain large number of rows. As a result i am not able to iterate and update the datatable using a loop.
I've tried the following code,
from row in table.AsEnumerable()
where table.Columns.Any(col => !row.IsNull(col))
select row;
But i can't find definition for Any(). Is there any namespace i should use to get Any()?
Any body please tell me how to correct this or suggest any alternate solutions..