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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T18:19:41+00:00 2026-06-18T18:19:41+00:00

Assume that there are two queries running on a memory list; First query (employing

  • 0

Assume that there are two queries running on a memory list;

First query (employing extension methods):

var temp = listX.Where(q => q.SomeProperty == someValue);

Second query:

var temp = from o in listX
              where o.SomeProperty == someValue
              select o;

Is there a difference between two queries in terms of performance; and if there is, why?

  • 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-18T18:19:43+00:00Added an answer on June 18, 2026 at 6:19 pm

    No, there is no difference at all. The compiler internally transforms the second version to the first one.

    The C# specification (§7.6.12) states:

    The C# language does not specify the execution semantics of query
    expressions. Rather, query expressions are translated into invocations
    of methods that adhere to the query expression pattern (§7.16.3).
    Specifically, query expressions are translated into invocations of
    methods named Where, Select, SelectMany, Join, GroupJoin, OrderBy,
    OrderByDescending, ThenBy, ThenByDescending, GroupBy, and Cast.These
    methods are expected to have particular signatures and result types,
    as described in §7.16.3. These methods can be instance methods of the
    object being queried or extension methods that are external to the
    object, and they implement the actual execution of the query.

    The translation from query expressions to method invocations is a
    syntactic mapping that occurs before any type binding or overload
    resolution has been performed. The translation is guaranteed to be
    syntactically correct, but it is not guaranteed to produce
    semantically correct C# code. Following translation of query
    expressions, the resulting method invocations are processed as regular
    method invocations, and this may in turn uncover errors, for example
    if the methods do not exist, if arguments have wrong types, or if the
    methods are generic and type inference fails.

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

Sidebar

Related Questions

Assume that there are two tables in a database. First one is X, second
I have a SQL query that I'm currently solving by doing two queries. I
Let's assume that I have a table with two columns A and B. There
Assume that there is a Model bean with a unique contraint combining two columns
Assume that there's no problem with my header file and some included library. I'm
We all know that most applications out there assume class names to follow the
Assume that we have two sets: A=(a_1,a_2,...,a_m) and B=(b_1,b_2,...,a_n) (Not necessarily of same size).
I have two tables say ( FCT_SALES_SUMMARY_A and FCT_SALES_SUMMARY_B ). If we assume that
Let's assume I two tables GOOD and BAD that stores records for widget production.
Let's assume there are two database users: (1) A user named APP who connects

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.