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

  • Home
  • SEARCH
  • 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 8158499
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T17:37:16+00:00 2026-06-06T17:37:16+00:00

How come when I do the following: var query = from a in OBJ

  • 0

How come when I do the following:

var query = from a in OBJ where a.ID == ID select c;

It does it <1second, but once I add the IQueryable function, it increases it to ~3seconds?

var query = (from a in OBJ where a.ID == ID select c).SingleOrDefault();

The same happens when I use FirstOrDefault().

  • 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-06-06T17:37:17+00:00Added an answer on June 6, 2026 at 5:37 pm

    This:

    var query = from a in OBJ where a.ID == ID select c;
    

    … just represents the query. It doesn’t execute it at all. It should be blazingly quick – not just “less than a second” but “almost immeasurably fast.”

    This:

    var query = (from a in OBJ where a.ID == ID select c).SingleOrDefault();
    

    … gets actual data which means it has to execute the query.

    In general, LINQ uses deferred execution where possible. This is just one example. Search for LINQ deferred execution and you’ll get loads of hits of articles to read. Dive into whichever one suits your reading style best 🙂

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

Sidebar

Related Questions

I did the following query: var list = from book in books where book.price
How come the following code does not cause any fade effects? var currentTicker =0;
I have come across the following basic Tree conflict: Local add, incoming add upon
I have come across the following jQuery code but could not understand it. What
I have the following array: var acronyms=[fubar,snafu,gnu]; Does jQuery have a method that would
How come in the following code my update business function always updates the input
I'm looking at trying the following code: var classA = function() {}; classA.prototype =
In the following construct: (function(){ var x = function(){ alert('hi!'); } var y =
How to create a database using connector/net programming? How come the following doesn't work?
I've come across the following piece of JavaScript and would like to know what

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.