当我检索具有null DataTime字段的行时,我收到此错误: ‘srRow.Closed_Date’ threw an exception of type ‘System.Data.StrongTypingException’ 我该如何正确处理这些? 您可以在检索值之前检查该列中的空
‘srRow.Closed_Date’ threw an exception of type ‘System.Data.StrongTypingException’
我该如何正确处理这些?
您可以在检索值之前检查该列中的空值.if (!srRow.IsClosed_DateNull()) { myDate = srRow.Closed_Date; }