我得到以下錯誤:運算符'??'不能應用於類型 'System.DateTime的' 的操作數
Operator '??' cannot be applied to operands of type 'System.DateTime'
foreach (EndServReward r in reward)
{
if (con.State == ConnectionState.Closed)
{
con.Open();
}
myIfxCmd.Parameters[0].Value = r.EmpNum ;
myIfxCmd.Parameters[1].Value = (r.ServDate) ?? DBNull.Value;
}
其中reward is List<EndServReward> reward
,爲什麼出現這種情況,如何解決?
爲什麼'r.ServDate'不能'null'?!!我想檢查,如果這些是空屬性或未設置(填充)值 –
@just_name這就是爲什麼它不能爲空:http://msdn.microsoft.com/en-us/library/vstudio/1t3y8s4s.aspx –
那麼如果我沒有設置這些屬性並插入數據庫,這會產生任何錯誤? –