EditedDetailed Property
Gets or sets the list of entities that were edited during synchronization, along with an array of updated properties for each edited entity.
Namespace
DbSyncKit.Core.DataContract
Containing Type
Result<T>
Property Type
List<(T sourceContract, (string propName, object propValue)[] editedProperties)>

Syntax

public List<(T sourceContract, (string propName, object propValue)[] editedProperties)> EditedDetailed { get; set; }

Remarks

The EditedDetailed property contains a list of tuples where:
  • sourceContract is the original entity before synchronization.
  • editedProperties is an array of updated properties for the edited entity.

Value

Type Description
List<(T sourceContract, (string propName, object propValue)[] editedProperties)>