我正在尝试将列添加到 DataTable。
我可以很好地添加列。但是,当我遍历这些新列的行设置值时,它不会更新 DataRow.ItemArray。这是我的代码:
private void UpdateTabularDataTable(SqlConnection connection)
{
// when I add these columns, it works fine.
var rejectedColumn = table.Columns.Add(Constants.RejectedUiColumnName, typeof(bool));
var rejectedReasonColumn = table.Columns.Add(Constants.RejectedReasonUiColumnName, typeof(string));
foreach (var row in table.Rows.Cast<DataRow>())
{
var contourId = (Guid)row.ItemArray[0];
// this is a Dictionary of objects which are rejected. The others are accepted.
string rejectedReason;
var isRejected = _rejectedParticleReasonHolder.TryGetValue(contourId.ToString(), out rejectedReason);
// these assignments don't work. There's no exception; they
// just don't update the relevant values on the object.
// Also, I verified that the Ordinal values are correct.
row.ItemArray[rejectedColumn.Ordinal] = isRejected;
row.ItemArray[rejectedReasonColumn.Ordinal] = rejectedReason;
}
}
}
}