无效的强制转换日期时间

本文关键字:日期 时间 转换 无效 | 更新日期: 2023-09-27 18:29:19

我有一个类,代码为

 public cCase(string pCaseNo, string pMode)
    {
        if (pMode == "new")
        {
            this._caseNo = Validate_CaseNo(pCaseNo);
        }
        if (pMode == "existing")
        {
            try
            {
                int intValidatedCaseNo = Validate_CaseNo(pCaseNo);
                string sqlText = "SELECT * FROM tblCases WHERE CaseNo = @CaseNo;";
                string strConnection = cConnectionString.BuildConnectionString();
                SqlConnection linkToDB = new SqlConnection(strConnection);
                linkToDB.Open();
                SqlCommand sqlCom = new SqlCommand(sqlText, linkToDB);
                sqlCom.Parameters.Add("@CaseNo", SqlDbType.Int);
                sqlCom.Parameters["@CaseNo"].Value = intValidatedCaseNo;
                SqlDataReader caseReader = sqlCom.ExecuteReader();
                if (caseReader.HasRows)
                    while (caseReader.Read())
                    {
                        this._claimant = caseReader["Claimant"].ToString();
                        this._defendant = caseReader["Defendant"].ToString();
                        this._caseType = caseReader["CaseType"].ToString();
                        this._occupation = caseReader["Occupation"].ToString();
                        this._doa = (DateTime?)caseReader["DOA"];
                        this._dateClosed = (DateTime?)caseReader["DateClosed"];
                        this._dateSettled = (DateTime?)caseReader["DateSettled"];
                        this._dateInstructed = (DateTime?)caseReader["DateInstructed"];
                        this._status = caseReader["Status"].ToString();
                        this._instructionType = caseReader["InstructionType"].ToString();
                        this._feeEstimate = (decimal?)caseReader["FeeEstimate"];
                        this._amountClaimed = (decimal?)caseReader["AmountClaimed"];
                        this._amountSettled = (decimal?)caseReader["AmountSettled"];
                        this._caseManager = caseReader["CaseManager"].ToString();
                    }
                caseReader.Close();
                linkToDB.Close();
                linkToDB.Dispose();
            }
            catch (Exception eX)
            {
                throw new Exception("Error finding case" + Environment.NewLine + eX.Message);
            }
        }
    }

但是日期时间?强制转换失败,并显示"无效强制转换"。我已经检查了SQL数据库,该字段正在存储有效日期所以我不知道为什么,当我通过DataReader将信息提取到我的应用程序中时,日期时间字段会导致无效Cast。

请帮忙。

无效的强制转换日期时间

您要更改的行为:

this._doa = (DateTime?)caseReader["DOA"];

至:

if (caseReader["DOA"] != DBNull.Value)
    this._doa.Value = (DateTime)caseReader["DOA"];

以及所有类似的线路。

DBNull值不能从Nullable类型中强制转换。

您的DateTime字段可能包含无法直接转换的DBNull值。

然而,为了方便起见,我会在您的DataReader上使用扩展方法。

public static class DataReaderExtensions
{
  public static DateTime? ReadNullableDateTime(this IDataReader reader, string column)
    {
        return reader.IsDBNull(column) ? (DateTime?)null : reader.GetDateTime(column);
    }
}

//使用

 this._dateInstructed = CaseReader.ReadNullableDateTime("DateInstructed");

您应该使用

DateTime.TryParse方法

这个不抛出异常,比如

var mydate =(DateTime)datetimeString

或var mydate=DateTime.Parse(datetimeString)

真的!!!

尝试使用以下代码部分

this._doa = (caseReader["DOA"] == DBNull.Value ? DBNull.Value : Convert.ToDateTime(caseReader["DOA"]); 

尝试将日期时间转换为

this._doa = Convert.ToDateTime(caseReader["DOA"]);

我经常处理DBNull.Value。。。

所以我使用这个方法,如果对象的值是DBNull.Value,它将返回对象的值或给定值类型的默认值。

    public static object GetValueOrDefault(object value, Type type)
    {
        if (value != DBNull.Value)
            return value;
        if (type.IsValueType == false)
            return null;
        Array array = Array.CreateInstance(type, 1);
        return array.GetValue(0);
    }

用法:

GetValueOrDefault(dataRecord.GetValue(fieldIndex), dataRecord.GetFieldType(fieldIndex)