public static bool ChangeTrackingTrackColumns(this TableOperation operation)
 => operation.FindAnnotation(SqlChangeTrackingAnnotationNames.TrackColumns).Value as bool? ?? false;
 public static bool IsChangeTrackingEnabled(this TableOperation operation)
 => operation.FindAnnotation(SqlChangeTrackingAnnotationNames.Enabled)?.Value as bool? ?? false;