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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T14:29:14+00:00 2026-05-12T14:29:14+00:00

I have this problem that i have code like this in many of my

  • 0

I have this “problem” that i have code like this in many of my controller actions:

var users = new List<SelectListItem>();
foreach(var user in userRepository.GetAll())
{
 var item = new SelectListItem { Text = user.FriendlyName, Value = user.UserId.ToString() };

 if (User.Identity.Name == user.UserName)
  item.Selected = true;

 users.Add(item);
}

ViewData["Users"] = users;

How would you refactor this to a more clean solution? I want to get DRY!

  • 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-12T14:29:15+00:00Added an answer on May 12, 2026 at 2:29 pm

    I would create this to be an extension method applied to List<user> or whatever your userRepository.GetAll() returns so then in your code you can replace all of these usages with just

    ViewData["Users"] = userRepository.GetAll().ToSelectList();
    

    Edit code sample: There’s 2 ways you could do this

    public static List<SelectListItem> ToSelectList(this List<Agent> users)
    {
        List<SelectListItem> items = new List<int>();
        foreach (var user in users)
        {
            var item = new SelectListItem { Text = user.FriendlyName, 
                                    Value = user.UserId.ToString() };
    
            if (User.Identity.Name == user.UserName)
                item.Selected = true;
    
            items.Add(item);
        }
    
        return items;
    }
    

    And usage would be like

    userRepository.GetAll().ToSelectList();
    

    Or if you have problems with identity being in the extension method have

    public static List<SelectListItem> ToSelectList(this List<Agent> users, 
                                                            string selectedUserName)
    {
        List<SelectListItem> items = new List<int>();
        foreach (var user in users)
        {
            var item = new SelectListItem { Text = user.FriendlyName, 
                                    Value = user.UserId.ToString() };
    
            if (user.UserName == selectedUserName)
                item.Selected = true;
    
            items.Add(item);
        }
    
        return items;
    }
    

    And usage would be like

    userRepository.GetAll().ToSelectList(User.Identity.Name);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have this problem that my sites uses alot of ajax and when a
Ok I have this problem that I've never had before, it's really bugging me.
I have this problem decomposing a relation schema into a set of schemas that
I have this little problem, that I cannot figure out which arguments to pass
I have this quite popular problem, but have failed to find a solution that
In the end, I have decided that this isn't a problem that I particularly
(I have a problem that I illustrated in this question but had no correct
This is a really weird problem that I have been having. When I download
I have this jsp client that consumes a webservice. The problem with the client
I have this issue with ComboBox that uses IEnumerable<Brush> as ItemsSource; the problem lies

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.