Is there a better/cleaner way to do this?
int stockvalue = 0;
if (!Convert.IsDBNull(reader["StockValue"]))
stockvalue = (int)reader["StockValue"];
|
Is there a better/cleaner way to do this?
|
||||
|
|
The shortest (IMHO) is:
Explanation:
|
|||||||||||||||||
|
|
The way I handle this is
Very simple, clean and one line. If for some reason I absolutely can't have a null value (which I find poor reasoning for usually since I'd rather know if a value has meaning or if it was unitialized for a primitive type) I would do:
|
|||||||
|
One possible solution so that you ensure that the DBNull carries across to your code. For our group, as a best practice, we try and not allow NULL columns in the database unless its really needed. There is more overhead in coding to handle it, and sometimes just rethinking the problem makes it so its not required. |
|||
|
|
Yes you can use http://msdn.microsoft.com/en-us/library/2cf62fcy(VS.80).aspx
|
|||||||||||
|
|
I wrote an extension method several days ago. By using it you could just do:
Here's the extension method (modify to fit your needs):
|
|||
|
|
You could do this conversion directly in your DB-query, thus avoiding the special case alltogether. But I wouldn't call that 'cleaner', unless you can consistently use that form in your code, since you would lose information by returning '0' instead of NULL from the DB. |
||||
|
|
While it's convenient to reference Instead, within your code, do something like this:
Of course, it's best to get all of the ordinals at one time, then use them throughout the code. |
|||||||||
|
|
int stockvalue = reader["StockValue"] != DbNull.Value ? Convert.ToInt32(reader["StockValue"]) : 0; |
|||
|
|
|
Here's one way.
You could also use TryParse
Let us know which way works for you |
|||||||||||||||
|
|
I have two following extension methods in my project:
The usage can be like this:
|
|||||||
|
|
|||
|
|
|
Not really. You could encapsulate it in a method:
And call it like this:
Or you could use Edit - corrected dumb code errors based on comments received. |
|||||||||||||
|