Can anyone please tell me why does the first of the following statements throws a compilation error and the second one does not?
NewDatabase.AddInParameter(NewCommand, "@SomeString", DbType.String, SomeString ?? DBNull.Value); // <-- Throws compilation error!
NewDatabase.AddInParameter(NewCommand, "@SomeString", DbType.String, (object)(SomeString) ?? DBNull.Value); // <-- Compiles!
I tried other nullable types such as byte? and got the same result. Can anyone please tell me why do I need to cast to object first?
NewDatabase.AddInParameter? – Vlad Jun 13 '11 at 16:23void AddInParameter(DbCommand, string, DBType, object). The compilation error is "Operator '??' cannot be applied to operands of type 'string' and 'System.DBNull'". – B.M Jun 13 '11 at 16:24