I am returning a scalar value from a SQL Server 2008 database:
string reason = cmd.ExecuteScalar().ToString() ?? : "";
I want to make sure that if null is returned, that reason = "" and not null.
i am getting an error on this line:
Error 3 Invalid expression term ':'
How can this be fixed?
EDIT:
thank you for the changes on the semicolon, now i am getting this error on the same line:
string reason = cmd.ExecuteScalar().ToString() ?? "";
System.NullReferenceException occurred Message="Object reference not set to an instance of an object."
??, not?? :. – zneak Jul 15 '11 at 17:17NullReferenceExceptionnow, it would indicate thatcmdisnull. – Jacob Jul 15 '11 at 20:23