I'm using a third party library which returns a data reader. I would like a simple way and as generic as possible to convert it into a List of objects.
For example, say I have a class 'Employee' with 2 properties EmployeeId and Name, I would like the data reader (which contains a list of employees) to be converted into List< Employee>.
I guess I have no choice but to iterate though the rows of the data reader and for each of them convert them into an Employee object that I will add to the List. Any better solution? I'm using C# 3.5 and ideally I would like it to be as generic as possible so that it works with any classes (the field names in the DataReader match the property names of the various objects).
|
|
|||||||||
|
|
Do you really need a list, or would IEnumerable be good enough? I know you want it to be generic, but a much more common pattern is to have a static Factory method on the target object type that accepts a datarow (or IDataRecord). That would look something like this:
.
Then if you really need a list rather than an IEnumerable you can call Update: I saw this again today and felt like writing the generic code:
|
|||||||||||
|
|
You could build an extension method like:
and use it like:
Joel's suggestion is a good one. You can choose to return
If you want to automatically map the columns to properties, the code idea is the same. You can just replace the
|
|||||||||||||||
|
|
Whilst I wouldn't recommend this for production code, but you can do this automatically using reflection and generics:
You can then use
|
|||||||||||
|
