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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T01:01:39+00:00 2026-06-04T01:01:39+00:00

I often find myself needing to compose a list of items from attributes of

  • 0

I often find myself needing to compose a list of items from attributes of another list of items.
An approach I take is often similar to the following:

    public class MyClass
    {
        public Guid Identifier { get; set; }
        public byte[] Bytes { get; set; }
        public int ForeignKey { get; set; }

        public static List<MyClass> AllMyClass { get; }
    }

    private List<Guid> GetIdentifiers(int foreignKey)
    {
        List<Guid> identifiers = new List<Guid>();
        foreach (var item in MyClass.AllMyClass.FindAll(c => c.ForeignKey == foreignKey)
        {
            identifiers.Add(item.Identifier);
        }
        return identifiers;
    }

Now, is there any faster/simpler way of implementing this with a lamda expression? As in, I’d like to condense the operation into one line:

List<Guid> identifiers = MyClass.AllMyClass.MagicExpression(c => c.ForeignKey == foreignKey);

In addition, would such as expression be possible for the .NET 2.0 framework?

  • 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-04T01:01:40+00:00Added an answer on June 4, 2026 at 1:01 am

    I think that something like that will work :

    List<Guid> identifiers = MyClass.AllMyClass.Where(x => x.ForeignKey == foreignKey).Select(x => x.Identifier).ToList();
    

    More over, they’re no lambda expressions in .Net 2.0.

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

Sidebar

Related Questions

I often find myself needing to write functions to load/save from/to ASCII (or similar)
I often find myself needing to write code with the following logical pattern: $foo
I often find myself writing conditionals similar to the following: if(Path.GetExtension(filename) == .pdf ||
I often find myself needing reference to an object that is several objects away,
I find myself often needing to use int.TryParse() to test if a value is
I often find myself with a list of disconnected Linq2Sql objects or keys that
I often find myself questioning whether I'm taking the right approach in trying to
I often find myself in the following situation. Say I was editing a file
I often find myself duplicating properties from my EF model classes in my view
I often find myself needing a quick ( in terms of code ), lightweight

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.