Nested Count : Count « LINQ « C# / CSharp Tutorial

Home
C# / CSharp Tutorial
1.Language Basics
2.Data Type
3.Operator
4.Statement
5.String
6.struct
7.Class
8.Operator Overload
9.delegate
10.Attribute
11.Data Structure
12.Assembly
13.Date Time
14.Development
15.File Directory Stream
16.Preprocessing Directives
17.Regular Expression
18.Generic
19.Reflection
20.Thread
21.I18N Internationalization
22.LINQ
23.GUI Windows Forms
24.Windows Presentation Foundation
25.Windows Communication Foundation
26.Workflow
27.2D
28.Design Patterns
29.Windows
30.XML
31.XML LINQ
32.ADO.Net
33.Network
34.Directory Services
35.Security
36.unsafe
C# / C Sharp
C# / C Sharp by API
C# / CSharp Open Source
C# / CSharp Tutorial » LINQ » Count 
22.29.6.Nested Count
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

public class MainClass {
    public static void Main() {

        List<Customer> customers = GetCustomerList();

        var orderCounts =
           from c in customers
           select new c.CustomerId, OrderCount = c.Orders.Count() };

        Console.Write(orderCounts);
    }
    static List<Customer> GetCustomerList() {
        List<Product> empTree = new List<Product>();
        empTree.Add(new Product ProductName = "A", Category = "O", UnitPrice = 12, UnitsInStock = 5, Total = 36, OrderDate = new DateTime(200511), Id = });
        empTree.Add(new Product ProductName = "B", Category = "O", UnitPrice = 2, UnitsInStock = 4, Total = 35, OrderDate = new DateTime(200511), Id = });
        empTree.Add(new Product ProductName = "C", Category = "O", UnitPrice = 112, UnitsInStock = 3, Total = 34, OrderDate = new DateTime(200511), Id = });
        empTree.Add(new Product ProductName = "D", Category = "O", UnitPrice = 112, UnitsInStock = 0, Total = 33, OrderDate = new DateTime(200511), Id = });
        empTree.Add(new Product ProductName = "E", Category = "O", UnitPrice = 1112, UnitsInStock = 2, Total = 32, OrderDate = new DateTime(200511), Id = });
        empTree.Add(new Product ProductName = "F", Category = "O", UnitPrice = 11112, UnitsInStock = 0, Total = 31, OrderDate = new DateTime(200511), Id = });

        List<Customer> l = new List<Customer>();
        l.Add(new Customer CompanyName = "A", Region = "R1", UnitsInStock = 1, Orders = empTree, CustomerId = });
        l.Add(new Customer CompanyName = "B", Region = "R2", UnitsInStock = 2, Orders = empTree, CustomerId = });
        l.Add(new Customer CompanyName = "C", Region = "R3", UnitsInStock = 3, Orders = empTree, CustomerId = });
        l.Add(new Customer CompanyName = "D", Region = "R4", UnitsInStock = 4, Orders = empTree, CustomerId = });
        l.Add(new Customer CompanyName = "E", Region = "R5", UnitsInStock = 5, Orders = empTree, CustomerId = });
        return l;
    }

}
class Customer : IComparable<Customer> {
    public string CompanyName get; set; }
    public string Region get; set; }
    public List<Product> Orders get; set; }
    public int UnitsInStock get; set; }
    public int CustomerId get; set; }

    public override string ToString() {
        return String.Format("Id: {0}, Name: {1}, Region: {3}"this.CustomerId, this.CompanyName, this.Region);
    }
    int IComparable<Customer>.CompareTo(Customer other) {
        if (other == null)
            return 1;

        if (this.CustomerId > other.CustomerId)
            return 1;

        if (this.CustomerId < other.CustomerId)
            return -1;

        return 0;
    }
}
class Product : IComparable<Product> {
    public string ProductName get; set; }
    public string Category get; set; }
    public int UnitPrice get; set; }
    public int UnitsInStock get; set; }
    public int Total get; set; }
    public DateTime OrderDate get; set; }
    public int Id get; set; }

    public override string ToString() {
        return String.Format("Id: {0}, Name: {1} , Category: {3}"this.Id, this.ProductName, this.Category);
    }
    int IComparable<Product>.CompareTo(Product other) {
        if (other == null)
            return 1;
        if (this.Id > other.Id)
            return 1;

        if (this.Id < other.Id)
            return -1;

        return 0;
    }
}
22.29.Count
22.29.1.Count with string value
22.29.2.Count with string operator
22.29.3.The aggregation operators return a scalar value
22.29.4.Use Aggregate Operators: Count
22.29.5.Conditional Count
22.29.6.Nested Count
22.29.7.Numeric Aggregates: count
22.29.8.Count elements in a Range
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.