DataRowVersion Enumerazione

Definizione

Descrive la versione di un oggetto DataRow.

public enum class DataRowVersion
public enum DataRowVersion
type DataRowVersion = 
Public Enum DataRowVersion
Ereditarietà
DataRowVersion

Campi

Current 512

Riga contenente i valori correnti.

Default 1536

Versione predefinita di DataRowState. Per un valore DataRowState di Added, Modified o Deleted, la versione predefinita è Current. Per un valore DataRowState di Detached, la versione predefinita è Proposed.

Original 256

Riga contenente i valori originali.

Proposed 1024

Riga contenente un valore proposto.

Esempio

Nell'esempio seguente viene controllato l'oggetto DataRowVersion di un DataRow prima di richiamare il AcceptChanges metodo.

private static void CheckVersionBeforeAccept()
{
    //Run a function to create a DataTable with one column.
    DataTable dataTable = MakeTable();

    DataRow dataRow = dataTable.NewRow();
    dataRow["FirstName"] = "Marcy";
    dataTable.Rows.Add(dataRow);

    dataRow.BeginEdit();
    // Edit data but keep the same value.
    dataRow[0] = "Marcy";
    // Uncomment the following line to add a new value.
    // dataRow(0) = "Richard"
    Console.WriteLine(string.Format("FirstName {0}", dataRow[0]));

    // Compare the proposed version with the current.
    if (dataRow.HasVersion(DataRowVersion.Proposed)) {
        if (object.ReferenceEquals(dataRow[0, DataRowVersion.Current], dataRow[0, DataRowVersion.Proposed])) {
            Console.WriteLine("The original and the proposed are the same.");
            dataRow.CancelEdit();
        } else {
            dataRow.AcceptChanges();
            Console.WriteLine("The original and the proposed are different.");
        }
    }
}

private static DataTable MakeTable()
{
    // Make a simple table with one column.
    DataTable dt = new DataTable("dataTable");
    DataColumn firstName = new DataColumn("FirstName", Type.GetType("System.String"));
    dt.Columns.Add(firstName);
    return dt;
}
Private Sub CheckVersionBeforeAccept()
    'Run a function to create a DataTable with one column.
    Dim dataTable As DataTable = MakeTable()

    Dim dataRow As DataRow = dataTable.NewRow()
    dataRow("FirstName") = "Marcy"
    dataTable.Rows.Add(dataRow)

    dataRow.BeginEdit()
    ' Edit data but keep the same value.
    dataRow(0) = "Marcy"
    ' Uncomment the following line to add a new value.
    ' dataRow(0) = "Richard"
    Console.WriteLine(String.Format("FirstName {0}", dataRow(0)))

    ' Compare the proposed version with the current.
    If dataRow.HasVersion(DataRowVersion.Proposed) Then
        If dataRow(0, DataRowVersion.Current) Is dataRow(0, DataRowVersion.Proposed) Then
            Console.WriteLine("The original and the proposed are the same.")
            dataRow.CancelEdit()
        Else
            dataRow.AcceptChanges()
            Console.WriteLine("The original and the proposed are different.")
        End If
    End If
End Sub

Private Function MakeTable() As DataTable
    ' Make a simple table with one column.
    Dim dt As New DataTable("dataTable")
    Dim firstName As New DataColumn("FirstName", _
       Type.GetType("System.String"))
    dt.Columns.Add(firstName)
    Return dt
End Function

Commenti

I DataRowVersion valori vengono usati durante il recupero del valore trovato in un DataRow uso Item[] o nell'oggetto DataRowGetChildRows .

Informa DataRowVersion la versione di un DataRow esistente. Le versioni cambiano nelle circostanze seguenti:

  • Dopo aver chiamato il DataRow metodo dell'oggetto BeginEdit , se si modifica il valore, i Current valori e Proposed diventano disponibili.

  • Dopo aver chiamato il DataRow metodo dell'oggetto CancelEdit , il Proposed valore viene eliminato.

  • Dopo aver chiamato il DataRow metodo dell'oggetto EndEdit , il valore Proposto diventa il Current valore.

  • Dopo aver chiamato il DataRow metodo dell'oggetto AcceptChanges , il Original valore diventa identico al Current valore.

  • Dopo aver chiamato il DataTable metodo dell'oggetto AcceptChanges , il Original valore diventa identico al Current valore.

  • Dopo aver chiamato il metodo dell'oggettoRejectChanges, il Proposed valore viene rimosso e la versione diventa Current.DataRow

Si applica a

Vedi anche