in code/KustoCopyConsole/Entity/RowItems/TempTableRowItem.cs [21:36]
public override void Validate()
{
if (string.IsNullOrWhiteSpace(ActivityName))
{
throw new InvalidDataException($"{nameof(ActivityName)} must have a value");
}
if (IterationId < 1)
{
throw new InvalidDataException(
$"{nameof(IterationId)} should be positive but is {IterationId}");
}
if (string.IsNullOrWhiteSpace(TempTableName))
{
throw new InvalidDataException($"{nameof(TempTableName)} should have a value");
}
}