According to MSDN (http://msdn.microsoft.com/en-us/library/dd487208.aspx), there is an object called DbDataReader
that is created in the process of running a SQL query in Entity Framework.
Entity Framework "translates" the DbDataReader
into a entity class.
How can I access the DbDataReader directly?
You can access the data reader it if you execute the query yourself: