Well this is one of method to handle DBNull.value
,
But I want a syntax using null-coalescing operator to handle DBNull.value
This will work
decimal UnitPrice = row["UnitPrice"] == DBNull.Value ? 0.00m : (decimal)row["UnitPrice"];
Well I have tried these, none of them works,
decimal UnitPrice = (decimal)row["UnitPrice"] ?? 0.00m
UnitPrice = Convert.ToDecimal(row["UnitPrice"]) ?? 0.00m
UnitPrice = Decimal.Parse(row["UnitPrice"].ToString()) ?? 0.00m
I am getting this
Operator '??' cannot be applied to operands of type 'decimal' and 'decimal'
I may ask the wrong question or the question may be invalid with my knowledge even if so please let there be light :)
decimal
is a value type and cannot benull
. You can use??
operator with onlyreference types.
You can keep using first way or you can do something like: