Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6824325
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T21:53:17+00:00 2026-05-26T21:53:17+00:00

Has anyone found/coded extension method that query data (using linq to sql ) in

  • 0

Has anyone found/coded extension method that query data (using linq to sql) in batches? I’ve seen IEnumerable extensions but I’m looking for something I might use like this:

IQueryable<Order> orders = from i in db.Orders select i;
foreach(var batch in orders.InBatches(100))
{
   //batch of 100 products
   foreach(var order in batch)
   {
      //do something
   }
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T21:53:17+00:00Added an answer on May 26, 2026 at 9:53 pm

    What you can do is this:

    public static IEnumerable<IQueryable<T>> InBatches(
        this IQueryable<T> collection, int size)
    {  
        int totalSize = collection.Count();
    
        for (int start = 0; start < totalSize; start += size)
        {
            yield return collection.Skip(start).Take(size);
        }
    }
    

    This extension method allows you to do extra filters over the return IQueryables. However, the usefulness is pretty limited. I can’t think of any good scenario for this :-). In most scenario’s you just want to stream the results and returning an IEnumerable<IEnumerable<T>> would just do fine, and is even better, since this will result in a single SQL query, while the shown approach will result in N + 1 queries.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Has anyone found a good method of mocking out ADO.Net Data Service calls from
There was an Html.RadioButtonList extension method in ASP.NET MVC Futures. Has anyone found a
Has anyone found any documentation or research about what data is transfered to Google
Has anyone else found VIM's syntax highlighting of Javascript sub-optimal? I'm finding that sometimes
Given that Chrome and Safari use webkit has anyone yet found anything that renders
Has anyone found it strange that the default context for uint and ulong is
Has anyone found a way to get around this? Or a better technique to
Has anyone found a way to save a FlowDocument as BAML or other compressed
Has anyone found a version of pywin32 for python 3.x? The latest available appears
Has anyone found a keyboard shortcut for the Show All Files in the Solution

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.