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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T07:27:59+00:00 2026-06-10T07:27:59+00:00

I have two objects. class User{ public int id{get;set;} public string name{get;set;} } class

  • 0

I have two objects.

class User{
 public int id{get;set;}
 public string name{get;set;}
}

class UserProtectedDetails{
 public string name{get;set;}
}

How can I convert List<User> to List<UserProtectedDetails>?

I know how to do it in reflection, but is there anyway to do it in Linq or other .NET way?

  • 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-10T07:28:01+00:00Added an answer on June 10, 2026 at 7:28 am

    is there anyway to do it in linq or other .net way?

    Sure:

    List<User> list = ...; // Make your user list
    List< UserProtectedDetails> = list
        .Select(u => new UserProtectedDetails{name=u.name})
        .ToList();
    

    EDIT: (in response to a comment) If you would like to avoid the {name = u.name} part, you need either (1) a function that makes a mapping for you, or (2) a constructor of UserProtectedDetails that takes a User parameter:

    UserProtectedDetails(User u) {
        name = u.name;
    }
    

    One way or the other, the name = u.name assignment needs to be made somewhere.

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

Sidebar

Related Questions

I have following two entities public class User { public int UserId { get;
Say i have the following two classes: public class User { public int ID
I have a two objects as follows: public class Item { public int ItemId
I have a class called Book; class Book { public string Name { get;
Let's say I have two objects: User and Race. class User attr_accessor :first_name attr_accessor
I have two objects and I want to merge them: public class Foo {
I have two student objects. class Student{ int physics; int english; int chemistry; }
Let's say I have created two objects from class foo and now want to
I have two objects of the same class (Model) type. I want to check
I have two questions. I know it is possible to declare class objects in

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.