Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
How to access deleted rows from a datatable
Message
De
26/07/2011 16:14:00
 
Information générale
Forum:
ASP.NET
Catégorie:
LINQ
Divers
Thread ID:
01519246
Message ID:
01519256
Vues:
48
>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
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform