UltraGrid dgSomeGrid = new UltraGrid();
if (((someDS.someDT)dgSomeGrid.DataSource).Any(x => x.ColumnA == someCode))
{
}
The above code threw exception because one of the row was deleted, similar problem as posted earlier : Error: Deleted row information cannot be accessed through the row.
According to the answer, solution can be checking the rowVersion so I'm wondering on how to apply DataRowVersion.Original
to the above mentioned Lambda
expression instead of looping?