How can I return a datareader when using Entity Framework 4?

前端 未结 2 1150
情深已故
情深已故 2021-02-13 02:36

I want to define a database query using LINQ and my EntityFramework context but I don\'t want entities returned; I want a datareader!

How can I do this? This is for expo

2条回答
  •  粉色の甜心
    2021-02-13 03:00

    If you need this you are more probably doing something unexpected. Simple iteration through materialized result of the query should be what you need - that is ORM way. If you don't like it use SqlCommand directly.

    DbContext API is simplified and because of that it doesn't contain many features available in ObjectContext API. Accessing data reader is one of them. You can try to convert DbContext to ObjectContext and use the more complex API:

    ObjectContext objContext = ((IObjectContextAdapter)dbContext).ObjectContext;
    using (var connection = objContext.Connection as EntityConnection)
    {
        // Create Entity SQL command querying conceptual model hidden behind your code-first mapping
        EntityCommand command = connection.CreateCommand();
        command.CommandText = "SELECT VALUE entity FROM ContextName.DbSetName AS entity";
        connection.Open();
        using (EntityDataReader reader = command.ExecuteReader(CommandBehavior.SequentialAccess))
        {
            ...
        }
    }
    

    But pure ADO.NET way is much easier and faster because the former example still uses mapping of query to SQL query:

    using (var connection = new SqlConnection(Database.Connection.ConnectionString))
    {
        SqlCommand command = connection.CreateCommand();
        command.CommandText = "SELECT * FROM DbSetName";
        connection.Open();
        using(SqlDataReader reader = command.ExecuteReader())
        {
    
        }
    }
    

提交回复
热议问题