Skip to content

Commit 4aec55c

Browse files
douglaslMSmairaw
authored andcommitted
Updated RowVersion of deleted RowState to fix #6535. (#6557)
1 parent 0de9f44 commit 4aec55c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/framework/data/adonet/dataset-datatable-dataview/row-states-and-row-versions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: "Row States and Row Versions"
3-
ms.date: "03/30/2017"
3+
ms.date: "07/19/2018"
44
dev_langs:
55
- "csharp"
66
- "vb"
@@ -38,7 +38,7 @@ string custID = custRow["CustomerID", DataRowVersion.Original].ToString();
3838
|DataRowVersion value|Description|
3939
|--------------------------|-----------------|
4040
|<xref:System.Data.DataRowVersion.Current>|The current values for the row. This row version does not exist for rows with a `RowState` of `Deleted`.|
41-
|<xref:System.Data.DataRowVersion.Default>|The default row version for a particular row. The default row version for an `Added`, `Modified`, or `Unchanged` row is `Current`. The default row version for a `Deleted` row is `Original`. The default row version for a `Detached` row is `Proposed`.|
41+
|<xref:System.Data.DataRowVersion.Default>|The default row version for a particular row. The default row version for an `Added`, `Modified`, or `Deleted` row is `Current`. The default row version for a `Detached` row is `Proposed`.|
4242
|<xref:System.Data.DataRowVersion.Original>|The original values for the row. This row version does not exist for rows with a `RowState` of `Added`.|
4343
|<xref:System.Data.DataRowVersion.Proposed>|The proposed values for the row. This row version exists during an edit operation on a row, or for a row that is not part of a `DataRowCollection`.|
4444

0 commit comments

Comments
 (0)