vote up 7 vote down star
1

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?

flag

4 Answers

vote up 13 vote down check

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|flag
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
I suggest you use "columnValue == DBNull.Value" instead of the 'is' operator, because its slightly faster =) – driAn Mar 26 at 21:33
vote up 2 vote down

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|flag
This solution does not work, as there is a logical difference between NULL and 0 – Greg Dean Oct 17 '08 at 11:53
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
vote up -2 vote down

thank u... i've been looking for this for a long time...

link|flag
(-1) Should be a comment. – Eran Betzalel 2 days ago
vote up 0 vote down

Hi there. Whait if i need to define the same generic class extension method for "class" and "struct":

public static Nullable TryGetByIndex(this IList list, int index) where T : struct public static Nullable TryGetByIndex(this IList list, int index) where T : class

BODY { return index < list.Count ? (T)list[index] : default(T); }

Thnx.

link|flag

Your Answer

Get an OpenID
or

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