// Cosntructors /// <summary> /// Initializes a new instance of this class. /// </summary> /// <param name="entitySet">The entity set.</param> /// <param name="exception">The <see cref="Exception"/> property value.</param> public EntitySetActionCompletedEventArgs(EntitySetBase entitySet, Exception exception) : base(entitySet) { Exception = exception; }
internal static void ExecuteOnValidate(EntitySetBase target) => target.OnValidate();
// Constructors /// <summary> /// Initializes a new instance of this class. /// </summary> /// <param name="entitySet">The entity set.</param> public EntitySetEventArgs(EntitySetBase entitySet) : base(entitySet.Owner, entitySet.Field) { EntitySet = entitySet; }