Is there a VB.NET equivalent for C#'s ?? operator?
|
|
|
||
|
|
IF() operator should do the trick for you value = If(nullable, defaultValueIfNull) |
|||
|
|
|
|
You can use an extension method. This one works like SQL Coalesce, and is probably overkill for what you are trying to test, but works.
|
||||||||||
|
|
|
I'm wondering if the OP isn't looking for IIF instead of if()... IIF is specified as: iif({condition}, {true result}, {false result}) This would seem to better emulate what the ? operator in C# does. |
||||
|
