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 4062310
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T15:34:56+00:00 2026-05-20T15:34:56+00:00

Reading the questions here and here has given me some insight into the situation,

  • 0

Reading the questions here and here has given me some insight into the situation, and it seems like using the AsEnumerable is memory consuming. Is there a better way to do this LINQ and the way it is done now, is the data that comes out reliable?

Removing the AsEnumerable results in a “Local sequence cannot be used in LINQ to SQL implementations of query operators except the Contains operator.”

var results = from p in pollcards.AsEnumerable()
                          join s in spoils.AsEnumerable() on new { Ocr = p.OCR, fileName = p.PrintFilename } equals new { Ocr = s.seq, fileName = s.inputFileName }
                          where p.Version == null
                          orderby s.fileOrdering, s.seq
                          select new ReportSpoilsEntity
                          {
                              seq = s.seq,
                              fileOrdering = s.fileOrdering,
                              inputFileName = s.inputFileName,
                              Ocr = p.OCR,
                              ElectorName = p.ElectorName
                          };
  • 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-20T15:34:57+00:00Added an answer on May 20, 2026 at 3:34 pm

    AsEnumerable() is effectively a cast to IEnumerable<T>, which makes member resolution find members of Enumerable instead of Queryable. It’s usually used when you want to force part of a query to run as SQL (or similar), and the remainder to run using LINQ to Objects.

    See my Edulinq blog post on it for more information.

    Now you’ve actually got two calls to AsEnumerable. I can see how removing the first but not the second could cause problems, but have you tried removing both?

    var results = from p in pollcards
                  join s in spoils
                     on new { Ocr = p.OCR, fileName = p.PrintFilename } 
                     equals new { Ocr = s.seq, fileName = s.inputFileName }
                  where p.Version == null
                  orderby s.fileOrdering, s.seq
                  select new ReportSpoilsEntity
                  {
                      seq = s.seq,
                      fileOrdering = s.fileOrdering,
                      inputFileName = s.inputFileName,
                      Ocr = p.OCR,
                      ElectorName = p.ElectorName
                  };
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Reading through some of the questions here, the general concensus seems to be that
After reading a couple of answers and comments on some SQL questions here, and
I came across this class while reading a C# book and have some questions.
I read some useful posts here on SO about previous maven questions, I'm currently
I've been reading through a lot of the rookie Java questions on finalize() and
I was reading this thread/post: https://stackoverflow.com/questions/262298/windows-c-ui-technology and am also wondering about a non .NET
Ok here is my situation. I've studied Java in my college for 2 semesters.
My question actually consists of multiple questions. I'm frequently reading about companies who deploy
I have been reading other questions and answers around this but I am not
I'm gonna split this question into 'Situation' , 'Task' , 'Confusion' & 'Question' to

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.