up vote 51 down vote favorite
11
share [g+] share [fb]

I want to do something like this :

myYear = record.GetValueOrNull<int?>("myYear"),

Notice the nullable type as the generic paramater.

Since the GetValueOrNull function could return null my first attempt was this :

public static T GetValueOrNull<T>(this DbDataRecord reader, string columnName) where T : class
{
    object columnValue = reader[columnName];

    if (!(columnValue is DBNull))
    {
        return (T)columnValue;
    }
    return null;
}

But the error I get now is

The type 'int?' must be a reference type in order to use it as parameter 'T' in the generic type or method

Right! Nullable is a stuct! So I tried changing the class contstrainted to a stuct constrained (and as a side effect can't return null anymore) :

public static T GetValueOrNull<T>(this DbDataRecord reader, string columnName) where T : stuct

Now the assingment

myYear = record.GetValueOrNull("myYear")

Gives the following error

The type 'int?' must be a non-nullable value type in order to use it as parameter 'T' in the generic type or method

Is specifying a nullable type as a generic parameter at all possible?

link|improve this question
feedback

5 Answers

up vote 54 down vote accepted

Change the return type to Nullable, and call the method with the non nullable parameter

static void Main(string[] args)
{
    int? i = GetValueOrNull<int>(null, string.Empty);
}


public static Nullable<T> GetValueOrNull<T>(DbDataRecord reader, string columnName) where T : struct
{
    object columnValue = reader[columnName];

    if (!(columnValue is DBNull))
    	return (T)columnValue;

    return null;
}
link|improve this answer
My first answer was a bit too off-the-cuff here. I was just retyping my answer and this one appeared, nearly verbatim what i was going to say. – David Alpert Oct 16 '08 at 16:10
1  
I suggest you use "columnValue == DBNull.Value" instead of the 'is' operator, because its slightly faster =) – driAn Mar 26 '09 at 21:33
3  
Personal preference, but you can use the short form T? instead of Nullable<T> – RaceFace Sep 9 '10 at 15:04
This is fine for value types, but then I think it won't work at all with reference types (e.g. GetValueOrNull<string>) because C# doesn't seem to like Nullable<(ref type)> like "string?". Robert C Barth & James Jones's solutions, below, seem much better to me if that's your need. – bacar Jul 28 '11 at 10:43
@bacar - right, hence the "where T : struct", if you want reference types you can create a similar method with "where T: class" – Greg Dean Aug 15 '11 at 23:30
show 1 more comment
feedback

Just do two things to your original code. Remove the where constraint, and change the last return from return null to return default(T). This way you can return whatever type you want.

By the way, you can avoid the use of "is" by changing your if statement to if (columnValue != DBNull.Value).

link|improve this answer
This solution does not work, as there is a logical difference between NULL and 0 – Greg Dean Oct 17 '08 at 11:53
2  
It works if the type he passes is int?. It will return NULL, just like he wants. If he passes int as the type, it will return 0 since an int can't be NULL. Besides the fact that I tried it and it works perfectly. – Robert C. Barth Oct 23 '08 at 0:20
feedback

I think my solution is the best (I might be biased but whatever):

public static T GetNullableValue<T>(this SqlDataReader rdr, int index)
{
    object val = rdr[index];

    if (!(val is DBNull))
        return (T)val;

    return default(T);
}

Just use it like this:

decimal? Quantity = rdr.GetNullableValue<decimal?>(1);
string Unit = rdr.GetNullableValue<string>(2);
link|improve this answer
1  
+1 for the example showing that it works with both a nullable value type and a reference type. – bacar Jul 28 '11 at 10:44
This could be shortened to: return rdr.IsDBNull(index) ? default(T) : (T)rdr[index]; – Foole Nov 9 '11 at 4:33
feedback

Just had to do something incredible similar to this. My code:

public T IsNull<T>(this object value, T nullAlterative)
{
    if(value != DBNull.Value)
    {
        Type type = typeof(T);
        if (type.IsGenericType && 
            type.GetGenericTypeDefinition() == typeof(Nullable<>).GetGenericTypeDefinition())
        {
            type = Nullable.GetUnderlyingType(type);
        }

        return (T)(type.IsEnum ? Enum.ToObject(type, Convert.ToInt32(value)) :
            Convert.ChangeType(value, type));
    }
    else 
        return nullAlternative;
}
link|improve this answer
feedback

I think you want to handle Reference types and struct types. I use it to convert XML Element strings to a more typed type. You can remove the nullAlternative with reflection. The formatprovider is to handle the culture dependent '.' or ',' separator in e.g. decimals or ints and doubles. This may work:

public T GetValueOrNull<T>(string strElementNameToSearchFor, IFormatProvider provider = null ) 
    {
        IFormatProvider theProvider = provider == null ? Provider : provider;
        XElement elm = GetUniqueXElement(strElementNameToSearchFor);

        if (elm == null)
        {
            object o =  Activator.CreateInstance(typeof(T));
            return (T)o; 
        }
        else
        {
            try
            {
                Type type = typeof(T);
                if (type.IsGenericType &&
                type.GetGenericTypeDefinition() == typeof(Nullable<>).GetGenericTypeDefinition())
                {
                    type = Nullable.GetUnderlyingType(type);
                }
                return (T)Convert.ChangeType(elm.Value, type, theProvider); 
            }
            catch (Exception)
            {
                object o = Activator.CreateInstance(typeof(T));
                return (T)o; 
            }
        }
    }

You can use it like this:

iRes = helper.GetValueOrNull<int?>("top_overrun_length");
Assert.AreEqual(100, iRes);



decimal? dRes = helper.GetValueOrNull<decimal?>("top_overrun_bend_degrees");
Assert.AreEqual(new Decimal(10.1), dRes);

String strRes = helper.GetValueOrNull<String>("top_overrun_bend_degrees");
Assert.AreEqual("10.1", strRes);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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