问题描述
- DataTable.Rows.Add(item)抛出错误:“值不能为 null。参数名: key”
-
界面功能是选则一个功能范围,然后点击新增,在界面列表中新增一行数据。
错误出现场景:选择同一个功能范围,点击新增后,代码会执行DataTable.Rows.Add(item)这句,大约有20%的概率出现如题错误。具体错误信息如下:
捕捉到 System.ArgumentNullException
HResult=-2147467261
_message=值不能为 null。
HResult=-2147467261
IsTransient=false
Message=值不能为 null。
参数名: key
Source=mscorlib
ParamName=key
StackTrace:
在 System.Collections.Generic.Dictionary2.FindEntry(TKey key)
2.get_Item(TKey key)
在 System.Collections.Generic.Dictionary
在 System.Data.DataView.MaintainDataView(ListChangedType changedType, DataRow row, Boolean trackAddRemove)
在 System.Data.DataViewListener.MaintainDataView(ListChangedType changedType, DataRow row, Boolean trackAddRemove)
在 System.Data.Index.<>c_DisplayClass5.b__4(DataViewListener listener, ListChangedType type, DataRow row, Boolean track)
在 System.Data.Listeners1.Notify[T1,T2,T3](T1 arg1, T2 arg2, T3 arg3, Action
4 action)
在 System.Data.Index.MaintainDataView(ListChangedType changedType, Int32 record, Boolean trackAddRemove)
在 System.Data.Index.InsertRecord(Int32 record, Boolean fireEvent)
在 System.Data.Index.ApplyChangeAction(Int32 record, Int32 action, Int32 changeRecord)
在 System.Data.Index.RecordStateChanged(Int32 record, DataViewRowState oldState, DataViewRowState newState)
在 System.Data.DataTable.RecordStateChanged(Int32 record1, DataViewRowState oldState1, DataViewRowState newState1, Int32 record2, DataViewRowState oldState2, DataViewRowState newState2)
在 System.Data.DataTable.SetNewRecordWorker(DataRow row, Int32 proposedRecord, DataRowAction action, Boolean isInMerge, Boolean suppressEnsurePropertyChanged, Int32 position, Boolean fireEvent, Exception& deferredException)
在 System.Data.DataTable.InsertRow(DataRow row, Int64 proposedID, Int32 pos, Boolean fireEvent)
在 System.Data.DataRowCollection.Add(DataRow row)
InnerException:跟踪代码结果:
item是datatable.row类型。
(不知道怎么放图片)在正常与错误情况下,item.ItemArray有内容,部分为空字符串,内容除时间不一样之外,其余均相同。正常时正常添加,错误时,执行到add方法报错,捕捉错误后,item.ItemArray中的值都变成空,类型为System.DBNull.
时间: 2024-12-31 12:23:24