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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T07:54:55+00:00 2026-06-04T07:54:55+00:00

I read this question( What is the scope of a lambda variable in C#?

  • 0

I read this question(What is the scope of a lambda variable in C#?)

But it is about Lambda variable scope inside LINQ Query.

Now to my question

Lets say I have a very simple LINQ query.

var Foo = FoobBar.Select(x => x);
var x = somefunction();

Compiler says : A local variable 'x' cannot be declared in this scope because it would give a different meaning to 'x', which is already used in a 'child' scope to denote something else.

Why is that so? Shouldn’t Lambda variable cease to exist when LINQ query ends?

EDIT: After reading answers i came to conclusion that its the outside x (returned from function) whose scope extends inside LINQ Query.

  • 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-04T07:54:56+00:00Added an answer on June 4, 2026 at 7:54 am

    It’s not about LINQ it’s about child scopes.

    For example:

    foreach (var bar in FooBar.Bars)
            {
                var x = FooBar.GetFoo();
            }
    var x = new Foo();
    

    produces exactly the same error message from compiler.

    To fix that you just have to place variables in different (non-nesting) scopes. For example:

    foreach (var bar in FooBar.Bars)
            {
                var x = FooBar.GetBar();
            }
    {
        var x = new Foo();
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This is the nth question about JS variable scope but I read through the
I have read this question but it's not quite what I was looking for.
So I'm trying to learn more about lambda expressions. I read this question on
I read this question but the answer does not perform a refactoring of the
You can read this question where I ask about the best architecture for a
I've read this question, but I want to know how can I delete the
I've already read this question and this question and this , but none of
This is a basic question about what options are available for defining the scope
I've read this question about getting the identity of an inserted row. My question
Having read this question Immutable or not immutable? and reading answers to my previous

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.