score:22
the correct way to work with large datasets in entity framework is:
- use efv4 and poco objects - it will allow sharing objects with upper layer without introducing dependency on entity framework
- turn off proxy creation / lazy loading to fully detach poco entity from object context
- expose
iqueryable<entitytype>
to allow upper layer to specify query more precisely and limit the number of record loaded from database - when exposing
iqueryable
setmergeoption.notracking
onobjectquery
in your data access method. combining this setting with turned off proxy creation should result in not cached entities and iteration through result of the query should always load only single materialized entity (without caching of loaded entities).
in your simple scenario you can always check that client doesn't ask too many records and simply fire exception or return only maximum allowed records.
score:0
i would use lazy ienumerable and implement some kind of paging for you data internaly.
maybe create your own ienumerable interface, so user of your library is not tempted to call tolist on it himself.
but question is.. is it really good way to hide fact, that user of this data layer would work with such ammounts of data? first thing to do is to limit returned data to bare minimum. dont return whole entity, but only parts, that you really need. are you eager-fetching any related entities? did you thought about using lazy loading?
score:0
one way to be certain is to always set an upper threshold that you will return to avoid gigantic set by ending your query with .take(max_rows)
. this can be a workaround or a preventive move from a bad call that take down your service but best is to rethink the solution
score:4
just a quick note about this point:
but since other classes have no access to the entities in ef, i need to perform a "tolist()" operation on the query and by that fetching the full dataset into memory.
the problem you encounter here is in my opinion not related to ef at all. what would you do if you wouldn't use ef for data access but raw ado.net? "having no access to ef" translates then to "having no access to a database connection".
if you have services or methods which must work with large amounts of objects but cannot access the database - either via ef or another kind of database connection - you must load the data into memory before you pass them to those services/methods. you may then think about solutions to buffer the loaded data somehow on hard disk on client side, but that has nothing to do with the source of the data and how you retrieve them. if you don't buffer and load everything into memory you are limited by your available memory. there is no way to escape from this limitation, i think.
if you have a connection to ef, i think the solution provided in ladislav's answer is the right one as the settings and procedure he described reduce ef almost to the behaviour of a simple datareader.
score:6
as much as i like ef for quick/simple data access, i probably wouldn't use it for such a scenario. when dealing with data of that size i'd opt for stored procedures that return exactly what you need, and nothing extra. then use a lightweight datareader to populate your objects.
the datareader provides an unbuffered stream of data that allows procedural logic to efficiently process results from a data source sequentially. the datareader is a good choice when retrieving large amounts of data because the data is not cached in memory.
additionally, as far as memory management goes, of course make sure you wrap your code handling unmanaged resources in a using block for proper disposal/garbage collection.
you also may want to consider implementing paging.
Source: stackoverflow.com
Related Query
- How to avoid memory overflow when querying large datasets with Entity Framework and LINQ
- How to avoid a NullReferenceException when using a nested property via projection with Entity Framework Core
- Entity Framework - When querying a single column, how do I tell the difference between no results and a result with a NULL value?
- How to avoid Query Plan re-compilation when using IEnumerable.Contains in Entity Framework LINQ queries?
- How to prevent Entity Framework from adding ISNULL checks when joining on a nullable property with LINQ
- How to Lazy Load child object with string primary key in Entity Framework Code First?
- Is there any overhead with LINQ or the Entity Framework when getting large columns as part of an entity?
- how to use entity framework to group by date not date with time
- How do I avoid a memory leak with LINQ-To-SQL?
- Entity Framework - An item with the same key has already been added. - Error when trying to define foreign key relationship
- How can I extract a list of Tuple from a specific table with Entity Framework / LINQ?
- How can i write SQL update query with where clause in Entity Framework in C#
- How can I use Entity Framework on an object graph past a depth of 2 with MySQL Connector / NET?
- How to load varbinary(max) fields only when necessary with ADO.NET Entity Framework?
- How to include sorted navigation properties with Entity Framework
- Forcing Entity Framework to not generate NCLOB's when building Linq-to-Sql Code (Model First)
- How do I extend ADO.NET Entity Framework objects with partial classes?
- How to solve the greatest-n-per-group problem with Entity Framework (Core)?
- LINQ in Entity Framework 6 with large .Any()
- How to use DbGeography.Filter in Linq with Entity Framework 5?
- Why is Entity Framework .ToList() with .Include very slow and how can I speed it up?
- How to map Integer to String with AutoMapper 3 and Entity Framework
- How do I avoid out of memory exceptions when using PLINQ?
- How to query many-to-many relationship with 'AND' condition using LINQ and Entity Framework
- How to get Multiple Result Set in Entity Framework using Linq with C#?
- How to do paging in entity framework with two table in MVC
- How do I trim DB field spaces querying DB with Entity Framework?
- How can avoid repeat same where in Entity Framework
- How to Create a Run-Time Computed (NotMapped) Value in Entity Framework Code First
- How to get a count of records with entity framework and repository pattern
More Query from same tag
- c# Sort a list of objects by a property of an object
- Categorize duplicate elements under same key
- Compare two collections optimization
- Group objects of same kind C#
- filtering age of members using linq
- Check for null value in LINQ before performing operation on it
- Is there an elegant way to repeat an action?
- Linq GroupBy to alter list
- LINQ SQL Select from list using partial match
- LINQ get x amount of elements from a list
- C# Unit Testing Async Error
- How to include OrderBy in Linq Query
- Dynamically generated lookup key for IQueryable
- How do I return results for one day?
- XElement vs Dictionary
- Should I keep adding conditions to my LINQ query or add a condition upfront and use two different queries?
- Parse XML with LINQ to get child elements
- Linq: List of lists to a long list
- Custom object using Except failing to use IEqualityComparer<T>
- How can I call a local function inside a LINQ query?
- Linq Dynamic Expressions Groupby with sum
- Using Any to check against a list in NHibernate
- Linq query with revisioned, nested item generating slow SQL
- LINQ find records with no join
- entity cannot be constructed in a LINQ to Entities query
- How to get parent tables and children tables plus table primary key by retrieve table object properties?
- VB.NET Access Database 255 Columns Limit
- selecting linq list is slow
- Find sequence in IEnumerable<T> using Linq
- Take slice from 2D array (int[ , ]) using LINQ in C#