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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T07:41:21+00:00 2026-05-28T07:41:21+00:00

The following code will return an Enumerable of dynamic objects. protected override dynamic Get(int

  • 0

The following code will return an Enumerable of dynamic objects.

protected override dynamic Get(int id)
{ 
    Func<dynamic, bool> check = x => x.ID == id;
    return  Enumerable.Where<dynamic>(this.Get(), check);
}

How do I select the FirstOrDefault so it is a single object not an Enumerable?

Similar to this answer but just want SingleOrDefault.

  • 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-28T07:41:22+00:00Added an answer on May 28, 2026 at 7:41 am

    Simplest way is probably

    protected override dynamic Get(int id)
    { 
        return Get().FirstOrDefault(x=>x.ID==id);
    }
    

    Since some people have had trouble making this work, to test just do a new .NET 4.0 Console project (if you convert from a 3.5 you need to add System.Core and Microsoft.CSharp references) and paste this into Program.cs. Compiles and runs without a problem on 3 machines I’ve tested on.

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Dynamic;
    
    namespace ConsoleApplication1
    {
        internal class Program
        {
            protected dynamic Get2(int id)
            {
                Func<dynamic, bool> check = x => x.ID == id;
                return Enumerable.FirstOrDefault<dynamic>(this.Get(), check);
            }
    
            protected dynamic Get(int id)
            {
                return Get().FirstOrDefault(x => x.ID == id);
            }
    
            internal IEnumerable<dynamic> Get()
            {
                dynamic a = new ExpandoObject(); a.ID = 1;
                dynamic b = new ExpandoObject(); b.ID = 2;
                dynamic c = new ExpandoObject(); c.ID = 3;
                return new[] { a, b, c };
            }
    
            static void Main(string[] args)
            {
                var program = new Program();
                Console.WriteLine(program.Get(2).ID);
                Console.WriteLine(program.Get2(2).ID);
            }
    
        }
    
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following code: public OTestTable GetTestCode(Func<TestTable, bool> whereClause) { return CoreContext.TestTables.Where(whereClause).Select(TestTableMap.DataToObject).FirstOrDefault(); }
I’m after some C# code that will have the following methods that will return
The following code will generate a link to the page I want to get
Although i have specified a unique key, it seems the following code will return
The following code will generate a compiler error. string GetAgePhrase(int age) { if (age
I would like to insert the following code: if ($this->id == null) { return
The following code will not run correctly in IE7 with the latest service packs
The following code will search for the user within the domain controller, but I
The following code will add the categories selector widget to the WordPress Page editor
The following code will log in my application to a server. That server will

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.