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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T02:53:14+00:00 2026-06-14T02:53:14+00:00

I suspect this is more simple than I think! I can create a list

  • 0

I suspect this is more simple than I think!

I can create a list of Func and then add to it

var x = new List<Func<IBQCustomer, string>>();
x.Add(c => c.FullName);

Bu how to I add an extra parameter into the Func? When I try I get an error

var y = new List<Func<IBQCustomer, OrderByDirection, string>>();
y.Add(...);

Is this possible?

I am aiming to build up a list of properties and what to do with them


Error:

y.Add(c => c.FullName, OrderByDirection.Asc);
No overload for Add that takes 2 arguments
  • 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-14T02:53:16+00:00Added an answer on June 14, 2026 at 2:53 am

    ‘OrderByDirection’ enumeration is not a function argument? In this case you could use something like:

    var y = new List<Tuple<Func<IBQCustomer, string>, OrderByDirection>>();
    y.Add(new Tuple<Func<IBQCustomer, string>, OrderByDirection>(c => c.FullName, OrderByDirection.Asc));
    

    Of course you could also use a custom class instead of ‘Tuple<>’:

    class MyClass
    {
        public Func<IBQCustomer, string> Function;
        public OrderByDirection Direction;
    }
    

    Or are you maybe writing the lambda expression wrong? This should work:

    var y = new List<Func<IBQCustomer, OrderByDirection, string>>();
    y.Add((c, d) => c.FullName);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am new to both DBs and Rails (using 3.2), and I suspect this
I suspect that I am trying to bend a QWizardPage to do more than
I suspect this is a fairly simple concept, but I haven't managed to find
I'm new to Cocoa development and suspect that this is a noob issue. I'm
I suspect this applies to general ASP.Net too but I am not sure. If
I suspect this is impossible, but thought I'd ask. Say I have a class
I suspect I am going to feel really stupid after posting this but here
One day I suspect I'll have to learn hadoop and transfer all this data
I have profiled for , while and do-while loops with something simple: while ($var
I suspect I'm running into some issues borne out of threading in my simple

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.