vote up 5 vote down star

I have a series of Extension methods to help with null-checking on IDataRecord objects, which I'm currently implementing like this:

public static int? GetNullableInt32(this IDataRecord dr, int ordinal)
{
    int? nullInt = null;
    return dr.IsDBNull(ordinal) ? nullInt : dr.GetInt32(ordinal);
}

public static int? GetNullableInt32(this IDataRecord dr, string fieldname)
{
    int ordinal = dr.GetOrdinal(fieldname);
    return dr.GetNullableInt32(ordinal);
}

and so on, for each type I need to deal with.

I'd like to reimplement these as a generic method, partly to reduce redundancy and partly to learn how to write generic methods in general.

I've written this:

public static Nullable<T> GetNullable<T>(this IDataRecord dr, int ordinal)
{
    Nullable<T> nullValue = null;
    return dr.IsDBNull(ordinal) ? nullValue : (Nullable<T>) dr.GetValue(ordinal);
}

which works as long as T is a value type, but if T is a reference type it won't.

This method would need to return either a Nullable type if T is a value type, and default(T) otherwise. How would I implement this behavior?

flag

7 Answers

vote up 6 vote down check

You can just declare your method like this:

public static T GetNullable<T>(this IDataRecord dr, int ordinal)
{
    return dr.IsDBNull(ordinal) ? default(T) : (T) dr.GetValue(ordinal);
}

This way, if T is a nullable int or any other nullable value type, it will in fact return null. If it's a regular datatype, it will just return the default value for that type.

link|flag
Its is very bad solution. If is in datarecord NULL value, you does not want a default value of int. The NULL and ZERO are different values. – TcKs Nov 19 '08 at 20:53
1  
IF the value in the database is nullable, then the T would be a Nullable<int> in which case NULL is the default value that would be returned. – BFree Nov 19 '08 at 20:54
If so, why do this extension method, if you can use simply "dr[ordinal] as int?" ? – TcKs Nov 19 '08 at 20:57
Hey, I didn't ask the question. I'm just giving my suggestion. This method will work for value types, nullable value types, and reference types. That was the question. This was my answer... – BFree Nov 19 '08 at 21:00
I tried this, works as advertised. – David B Nov 19 '08 at 21:25
show 4 more comments
vote up 1 vote down

I don't think you can implement this with a single function. If C# supported overloading based on return type, you might be able to, but even then I would recommend against doing so.

You should be able to accomplish the same thing by not using nullable data types and return either an actual value or null, as suggested by BFree.

link|flag
Actually, you can have two overloaded methods that only differ in return types. This is legit syntax: public string Method() { return ""; } public int Method() { return 0; } – BFree Nov 19 '08 at 21:12
@BFree : Type 'xyz' already defines a member called 'Method' with the same parameter types. – David B Nov 19 '08 at 21:16
@BFree: I just tried your exact code and got the following error: Type 'Program1' already defines a member called 'Method' with the same parameter types. – Scott Dorman Nov 19 '08 at 21:18
The parameter types are the same, but the return types are different, and that is legit syntax. Try it out.... – BFree Nov 19 '08 at 21:20
OK, I stand corrected. For some reason I was convinced you CAN do that. Mah bad.... – BFree Nov 19 '08 at 21:21
vote up 1 vote down

This works:

public static T Get<T>( this IDataRecord dr, int ordinal) 
{
	T  nullValue = default(T);
	return dr.IsDBNull(ordinal) ? nullValue : (T) dr.GetValue(ordinal);
}


public void Code(params string[] args)
{
	IDataRecord dr= null;
	int? a = Get<int?>(dr, 1);
	string b = Get<string>(dr, 2);
}
link|flag
This is pretty much the same as BFree's answer. The sample usage is helpful. – David B Nov 19 '08 at 21:31
vote up 0 vote down

The Nullable structure is only for Value types, because reference types are nullable anyway...

link|flag
Which is why I can't make this return Nullable<T>, which is why I asked the question. – Adam Lassek Nov 19 '08 at 20:49
vote up 0 vote down

You can't do it with one method but you do it with three:

public static T GetData<T>(this IDataReader reader, Func<int, T> getFunc, int index)
{
    if (!reader.IsClosed)
    {
        return getFunc(index);
    }
    throw new ArgumentException("Reader is closed.", "reader");
}

public static T GetDataNullableRef<T>(this IDataReader reader, Func<int, T> getFunc, int index) where T : class
{
    if (!reader.IsClosed)
    {
        return reader.IsDBNull(index) ? null : getFunc(index);
    }
    throw new ArgumentException("Reader is closed.", "reader");
}

public static T? GetDataNullableValue<T>(this IDataReader reader, Func<int, T> getFunc, int index) where T : struct
{
    if (!reader.IsClosed)
    {
        return reader.IsDBNull(index) ? (T?)null : getFunc(index);
    }
    throw new ArgumentException("Reader is closed.", "reader");
}

Then to use it you would do:

private static Whatever CreateObject(IDataReader reader)
{
    Int32? id = reader.GetDataNullableValue<Int32>(reader.GetInt32, 0);
    string name = reader.GetDataNullableRef<string>(reader.GetString, 1);
    Int32 x = reader.GetData<Int32>(reader.GetInt32, 2);
}
link|flag
vote up 0 vote down
public static T Get<T>(this IDataRecord rec, Func<int, T> GetValue, int ordinal)
{
    return rec.IsDBNull(ordinal) ? default(T) : GetValue(ordinal);
}

or more performant

public static T Get<T>(this IDataRecord rec, Func<IDataRecord, int, T> GetValue, int ordinal)
{
    return rec.IsDBNull(ordinal) ? default(T) : GetValue(rec, ordinal);
}

public static Func<IDataRecord, int, int> GetInt32 = (rec, i) => rec.GetInt32(i);
public static Func<IDataRecord, int, bool> GetBool = (rec, i) => rec.GetBoolean(i);
public static Func<IDataRecord, int, string> GetString = (rec, i) => rec.GetString(i);

and use it like this

rec.Get(GetString, index);
rec.Get(GetInt32, index);
link|flag
You've managed to implement a generic function without realizing the slightest benefit from it. Not having to write a separate function for each type is the whole point of generics, and the reason for this question being posted. – Adam Lassek Jun 26 at 20:03
Maybe, but the difference from your solution is that you have only one method where you check for nullability and avoid casting which may be costly if you have really large datasets. – SeeR Jun 26 at 21:15
Also comparing to BFree solution you avoid boxing – SeeR Jun 26 at 21:27
vote up -2 vote down

I do it this way:

DataRow record = GetSomeRecord();
int? someNumber = record[15] as int?
Guid? someUID = record["MyPrimaryKey"] as Guid?;
string someText = GetSomeText();
record["Description"] = someText.ToDbString();

// ........

public static class StringExtensionHelper {
    public static object ToDbString( this string text ) {
         object ret = null != text ? text : DBNull.Value
         return ret;
    }
}

EDIT: You can ( or you should ) have a "ToDbInt32, ToDbBool, etc..." extension methods for other primitive types ofcourse.

EDIT 2: You can also extend the base class "object" with "ToDbValue".

public static class StringExtensionHelper {
    public static object ToDbValue( this object value ) {
         object ret = object.ReferenceEquals( value, null ) ? (object)DBNull.Value : value;
         return ret;
    }
}
link|flag
I could, but the whole point of this generics exercise is to avoid writing a separate method for each datatype. And I don't see how your example is even pertinent... I'm extending IDataRecord to null check data taken from the datastore. – Adam Lassek Nov 19 '08 at 20:54
If you want check values from record, you can use "as" keyword, which do what you want. If is in record DbNull, then null will be returned. Otherwise the will be returned "int" as "Nullable<int>". No special method is required. – TcKs Nov 19 '08 at 21:03
You should not extend object with an extension method as it won't be available in all languages, like VB.NET – Scott Dorman Nov 19 '08 at 21:08
@Scott Dorman: Yes, but only if you need CLS compliance. .NET has a lot of languages, be care about all of them is IMHO not good way. – TcKs Nov 19 '08 at 21:17

Your Answer

Get an OpenID
or

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