tags:

views:

54

answers:

1

I know it will sound strange but please don't mind:

In C#, let's say I manually do with ADO or anything else:

SELECT * FROM Member

Then I want LINQ to construct my Member entities from the data I just retrieved myself from the query...

Do you have an idea if it's possible?

Thanks

A: 

I found it, sorry:

Context::Translate(DbDataReader) - Converts an existing DbDataReader to objects.

Mike Gleason jr Couturier