vote up 3 vote down star

I am pulling varchar values out of a DB and want to set the string I am assigning them to as "" if they are null. I'm currently doing it like this.

if (IsNullOrEmpty(planRec.approved_by) == true)
  this.approved_by = "";
else
  this.approved_by = planRec.approved_by.toString();

There seems like there should be a way to do this in a single line something like

this.approved_by = "" || planRec.approved_by.toString();

However I can't find an optimal way to do this. Is there a better way or is what I have the best way to do it?

Thanks

flag

1  
The == true is superfluous here... – ck Jul 13 at 16:35
1  
On a complete side note, I would suggest that "== true" doesn't add anything to the code. Besides not actually being needed, I find direct comparisons to Boolean literals to be awkward. – Steven Sudit Jul 13 at 16:38
2  
@ ck & Steven: It's arguable if it adds something. Personally, I add '== false' and '== true' to every comparison to prevent accidents. It's easy to skip a '!' or think you saw one. One could easily make an argument that is increases clarity and readability. – Nazadus Jul 13 at 17:27

7 Answers

vote up 10 vote down check

Try this:

this.approved_by = IsNullOrEmpty(planRec.approved_by) ? "" : planRec.approved_by.toString();

You can also use the null-coalescing operator as other have said - since no one has given an example that works with your code here is one:

this.approved_by = planRec.approved_by ?? planRec.approved_by.toString();

But this example only works since a possible value for this.approved_by is the same as one of the potential values that you wish to set it to. For all other cases you will need to use the conditional operator as I showed in my first example.

link|flag
Just a side note, this is referred to as the null coalescing operator. – R. Bemrose Jul 13 at 16:30
I did post the null coalesce operator first but I think the conditional operator is better suited to what the OP is asking. – Andrew Hare Jul 13 at 16:31
@R. Bemrose...the null coalescing operator is ??...see @Dave's answer below. – Paul Alexander Jul 13 at 16:32
@Paul - I did use the ?? at first and then edited my answer to what you see above. – Andrew Hare Jul 13 at 16:32
Yeah, when I made that comment, it was still showing the ?? version. I noticed it had changed when I reloaded the page to see what other answers were submitted. – R. Bemrose Jul 13 at 16:33
show 2 more comments
vote up 7 vote down

The coalesce operator (??) is what you want, I believe.

link|flag
1  
Yep...but only because the default is "". – Paul Alexander Jul 13 at 16:31
vote up 2 vote down

You are looking for the C# coalesce operator: ??. This operator takes a left and right argument. If the left hand side of the operator is null or a nullable with no value it will return the right argument. Otherwise it will return the left.

var x = somePossiblyNullValue ?? valueIfNull;
link|flag
Oops, I was a bit late there. Good answer. – Yohnny Jul 13 at 16:33
This will not actually work for my application because the .ToString will throw in error – Splashlin Jul 13 at 16:41
vote up 0 vote down

Removed, due to duplicate answer

link|flag
This won't work if approved_by == null. – Dmitri Nesteruk Jul 13 at 16:34
vote up 4 vote down

My guess is the best you can come up with is

this.approved_by = IsNullOrEmpty(planRec.approved_by) ? string.Empty
                                                      : planRec.approved_by.ToString();

Of course since you're hinting at the fact that approved_by is an object (which cannot equal ""), this would be rewritten as

this.approved_by = (planRec.approved_by ?? string.Empty).ToString();
link|flag
+1 for most complete answer. If I could give another +1 for using string.Empty, I would. – Steven Sudit Jul 13 at 16:37
vote up 3 vote down

To extend @Dave's answer...if planRec.approved_by is already a string

this.approved_by = planRec.approved_by ?? "";
link|flag
vote up 0 vote down

u can also do it in ur query..for instance in sql server, google ISNULL and CASE builtin functions

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.