Projection Creates New Objects : Projection « LINQ « C# / CSharp Tutorial






using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;


    class Customer
    {
        public string ID { get; set; }
        public string City { get; set; }
        public string Country { get; set; }
        public string Region { get; set; }
        public decimal Sales { get; set; }

        public override string ToString()
        {
            return "ID: " + ID + " City: " + City + " Country: " + Country + " Region: " + Region + " Sales: " + Sales;
        }
    }
    class Program
    {
        static void Main(string[] args)
        {
            List<Customer> customers = new List<Customer> {
              new Customer { ID="A", City="New York", Country="USA", Region="North America", Sales=9999},
              new Customer { ID="R", City="Beijing", Country="China", Region="Asia", Sales=9000 },
              new Customer { ID="T", City="Lima", Country="Peru", Region="South America", Sales=2002 }
           };

            var queryResults =
                from c in customers
                where c.Region == "Asia"
                select new { c.City, c.Country, c.Sales }
               ;
            foreach (var item in queryResults)
            {
                Console.WriteLine(item);
            }
        }
    }








22.57.Projection
22.57.1.Projection Operators: do calculation in select statement
22.57.2.Projection Linq
22.57.3.Projection Creates New Objects