Подтвердить что ты не робот

С#: Как преобразовать список объектов в список одного свойства этого объекта?

Скажем, у меня есть:

IList<Person> people = new List<Person>();

И объект person имеет такие свойства, как FirstName, LastName и Gender.

Как я могу преобразовать это в список свойств объекта Person. Например, в список первых имен.

IList<string> firstNames = ???
4b9b3361

Ответ 1

List<string> firstNames = people.Select(person => person.FirstName).ToList();

И с сортировкой

List<string> orderedNames = people.Select(person => person.FirstName).OrderBy(name => name).ToList();

Ответ 2

IList<string> firstNames = (from person in people select person.FirstName).ToList();

или

IList<string> firstNames = people.Select(person => person.FirstName).ToList();

Ответ 3

firstNames = (from p in people select p=>p.firstName).ToList();

Ответ 4

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace TestProject
{
    public partial class WebForm3 : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
            SampleDataContext context = new SampleDataContext();
            List<Employee> l = new List<Employee>();
            var qry = from a in context.tbl_employees where a.Gender=="Female"  
                orderby  a.Salary ascending
            select new Employee() {
                           ID=a.Id,
                           Fname=a.FName,
                           Lname=a.Lname,
                           Gender=a.Gender,
                           Salary=a.Salary,
                           DepartmentId=a.DeparmentId
            };
            l= qry.ToList();
            var e1 =  from  emp in context.tbl_employees
                where emp.Gender == "Male"
                orderby emp.Salary descending
                select  emp;
            GridView1.DataSource = l;
            GridView1.DataBind();
        }
    }
    public class Employee
    {
        public Int64 ID { get; set; }
        public String Fname { get; set; }
        public String Lname { get; set; }
        public String Gender { get; set; }
        public decimal? Salary { get; set; }
        public int? DepartmentId { get; set; }
    }
}