Is there a VB.NET equivalent for C#'s ?? operator?
|
feedback
|
|
| |||||||
feedback
|
|
IF() operator should do the trick for you value = If(nullable, defaultValueIfNull) | ||||
|
feedback
|
|
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.
| |||||||||||||||||||
feedback
|
|
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. | |||||||
feedback
|