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

  • Home
  • SEARCH
  • 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 621823
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T18:55:04+00:00 2026-05-13T18:55:04+00:00

I am creating a SelectList from a List(T) class to use to populate a

  • 0

I am creating a SelectList from a List(T) class to use to populate a HtmlHelper.DropDownList in an MVC view, setting the dataValueField and dataTextField in the Select List constructor. The text that should be displayed doesn’t excatly match one of the properties on my class and still needs to be manipulated. Is there any way of doing this through the SelectList constructor? I realise I could do this by creating a struct or class to use as the IEnumerable input for the Select list but I’d prefer not if I don’t need to.

My Controller code is currently:

        var members = MemberService.GetAll();
        this.ViewData["Members"] = new SelectList(members, "Id", "Name");

My View code is currently:

        <%= Html.DropDownList("Members") %>

Instead of “Surname” as my display field I’d like to be able to preformat the field by combining (and formatting) two properties.

  • 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-13T18:55:04+00:00Added an answer on May 13, 2026 at 6:55 pm

    You can create loop through the members list, adding the values to a new list that you then create the SelectList from. Something like:

    var members = MemberService.GetAll();
    List<object> newList = new List<object>();
    foreach(var member in members)
        newList.Add( new { 
            Id = member.Id, 
            Name = member.Name + " " + member.Surname 
        } );
    this.ViewData["Members"] = new SelectList(newList, "Id", "Name");
    

    I can’t remember if you can use an anonymous type like that or not, but if not you can create an small data class to use as an intermediary.

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

Sidebar

Related Questions

I'm creating a SelectList to populate a dropdown list from a LINQ query. This
I am using a drop down list in my MVC app to select from
I'm creating a form where the user will select n days from a list
Is there a way of creating an age select list like this: <?php $Array
I'm creating a class book list - there's a master list of books, and
Continuing on from this question programmatically creating a drop down list I would like
I am creating a SelectList for a drop down public class EditDeviceViewModel { public
Im having some trouble with my syntax creating a select list for days in
Creating a class at runtime is done as follows: klass = Class.new superclass, &block
Creating a server-side socket will fail if I'm trying to use the same port

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.