当前位置 : 主页 > 编程语言 > c语言 >

c# – 如何处理来自SQL Server的DBNull DateTime字段?

来源:互联网 收集:自由互联 发布时间:2021-06-25
当我检索具有null DataTime字段的行时,我收到此错误: ‘srRow.Closed_Date’ threw an exception of type ‘System.Data.StrongTypingException’ 我该如何正确处理这些? 您可以在检索值之前检查该列中的空
当我检索具有null DataTime字段的行时,我收到此错误:

‘srRow.Closed_Date’ threw an exception of type ‘System.Data.StrongTypingException’

我该如何正确处理这些?

您可以在检索值之前检查该列中的空值.

if (!srRow.IsClosed_DateNull())
{
  myDate = srRow.Closed_Date;
}
网友评论