Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
How to access deleted rows from a datatable
Message
From
26/07/2011 16:14:00
 
General information
Forum:
ASP.NET
Category:
LINQ
Miscellaneous
Thread ID:
01519246
Message ID:
01519256
Views:
47
>I am getting a DeltedRowInaccessible exception when I iterate through the output from a linq statement, where one of the rows has been deleted.
>
>How do I remove deleted rows from the table (Have used DataRowState.deleted but does not seem to work


Hi Gerard,

Checking for DataRowState.Deleted works ... perhaps you didn't code it correctly. Here's some sample syntax (tested and working fine):
DataRow[] rows = dsTemp.Personnel
    .Where(row => row.RowState != DataRowState.Deleted && 
                  row.IslastnameNull() == false && 
                  row.lastname == "Berent")
	.Select(row => row).ToArray();
~~Bonnie
Bonnie Berent DeWitt
NET/C# MVP since 2003

http://geek-goddess-bonnie.blogspot.com
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform