Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am populating the customer object as shown below. How do I would I concisely code something like the following?

If IsDbNull(.Age) Then 
  .Age = 10
Else
  .Age = dataRow("Age")
End If 

Here's the context I'd like to use it in:

Public Shared Function Retrieve() As List(Of Customer)

  Dim dt As DataTable = Dac.ExecuteDataTable("CustomerRetrieveAll", Nothing)
  Dim customerList As New List(Of Customer)

  For Each dr As DataRow In dt.Rows 
    customerList.Add(New Customer {
                       .CustomerId = CType(dr("CustomerID"), Integer),
                       .LastName = dr("LastName").ToString,
                       .Age = dr("Age").ToString,
                       .FirstName = dr("FirstName").ToString})  
  Next

  Return customerList 
End Function
share|improve this question

3 Answers

up vote 0 down vote accepted

Within the Microsoft.VisualBasic namespace there is a function called IIF. It works by evaluating an expression and returning one value if the expression is true and another if false.

So

.Age = IIF(dr("Age") = DBNull.Value, 10, dr("Age").ToString())

In newer versions of Visual Studio (2008 ~), this is available by default without import an import (IIF was a function, the new If is an operator):

.Age = If(dr("Age") = DBNull.Value, 10, dr("Age").ToString())

If it wasn't DBNull, but just Nothing, you could use the null-coalescing operator:

Dim val = If(objectThatMightBeNothing, DefaultValueToUse)

See MSDN for more detail.

share|improve this answer

Did you try this?:

.Age = IIf(dr("age") is DbNull, 10, dr("age"))

Hope it helps.

share|improve this answer

What value the age can have if it contains null?
I suggest using Nullable(Of Integer) for Age.

Also, compare it against DBNull.Value (which is used for comparison in case the underlying field contains null value).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.