LinqDataSourceUpdateEventArgs.NewObject Property

Definition

Gets the object that contains the values that will be saved in the data source.

C#
public object NewObject { get; }

Property Value

An object of the type specified in the TableName property that contains the data to save.

Examples

The following example shows an event handler for the Updating event. The example shows how to compare properties from the OriginalObject property and the NewObject property to determine whether the value in the Category property has changed. If so, the CategoryChanged property of the object in the NewObject property is set to true.

C#
protected void LinqDataSource_Updating(object sender, LinqDataSourceUpdateEventArgs e)
{
    Product originalProduct = (Product)e.OriginalObject;
    Product newProduct = (Product)e.NewObject;

    if (originalProduct.Category != newProduct.Category)
    {
        newProduct.CategoryChanged = true;
    }
}

Remarks

Create an event handler for the Updating event and retrieve the NewObject property to validate the data. You can also change the data or cancel the update operation.

Applies to

Produkt Verzie
.NET Framework 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1