mgravell / fast-member

Automatically exported from code.google.com/p/fast-member
Apache License 2.0
1.02k stars 141 forks source link

ObjectWriter to fill list from DataReader #24

Open RoCore opened 8 years ago

RoCore commented 8 years ago

Would be nice to have something like ObjectReader, just the oposite way. Or do I miss something?

mgravell commented 8 years ago

That sounds like a job for "dapper", to be honest, which already offers this both end-to-end (executing the command too), or just from a data-reader via the GetRowParser(...) method. Although actually, I was thinking about moving this particular feature into dapper anyway (but probably with a very different implementation - I just mean the concept).

I'm not sure it is worth duplicating this concept into fast-member. Just use "dapper" for that bit!

https://www.nuget.org/packages/Dapper

On 13 July 2016 at 16:15, RomanKernSW notifications@github.com wrote:

Would be nice to have something like ObjectReader, just the oposite way. Or do I miss something?

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/mgravell/fast-member/issues/24, or mute the thread https://github.com/notifications/unsubscribe/AABDsIFfoMU9AjEC6_0carz14UOS5-WOks5qVQD0gaJpZM4JLh0G .

Regards,

Marc

RoCore commented 8 years ago

thanks, good to know!