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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T10:29:57+00:00 2026-05-30T10:29:57+00:00

I have a long line with an OrderBy inside. This line repeats itself several

  • 0

I have a long line with an OrderBy inside. This line repeats itself several times with only a minor difference:

OrderBy(m => m.Name)
OrderBy(m => m.CreationTime)

etc.

In the interest of maintainability, is there a way to make only one line, and have it call some method, or perhaps use some Action that will take care of returning the correct field? The problem is that the fields are not of the same type.

  • 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-30T10:29:58+00:00Added an answer on May 30, 2026 at 10:29 am

    Maybe this comes closer to what you want

    public IComparable GetKey(int keyNum)
    {
        switch (keyNum) {
            case 1:
                return Name;
            case 2:
                return CreationTime;
            default:
                return null;
        }
    }
    

    Sorting would occur like this

    .OrderBy(m => m.GetKey(1))
    

    Yet another way is to return a delegate

    public static Func<MyClass, IComparable> GetKeySelector(int keyNum)
    {
        switch (keyNum) {
            case 1:
                return m => m.Name;
            case 2:
                return m => m.CreationTime;
            default:
                throw new ArgumentException();
        }
    }
    
    .OrderBy(MyClass.GetKeySelector(1));
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a web page that displays a long line graph inside a div
I have a long line like this: <div class=interesting>This is interesting1</div><div class=not interesting>Some text</div><div
I have long text containing name that looks like something-something. This long text is
Given I have a long phrase, say, in line :12 , as this example:
I wish to have long and short forms of command line options invoked using
Consider I have the following text in a UILabel (a long line of dynamic
See i have this following code below, at line no.9 i'm calculating some dates
I have an input db2 table with two elements: loan_number, debt_to_income; this table's name
If I have run a long line in IPython, and try and recall it
if i have a very long line of a code, is it possible to

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.