2
3
4
5
6
7 var q = ( from c in dc.Customers where c.City == "London" where c.City == "London" select c).Including( c => c.Orders ); select c).Including( c => c.Orders ); var q = ( from c in dc.Customers where c.City == "London" where c.City == "London" select c).Including( c => c.Orders ); select c).Including( c => c.Orders );
8
9
10
11
12
13
14 var q = from c in dc.Categories where c.Products.Count > 5 select new { Name = c.CategoryName, Count = c.Products.Count };
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
© 2007 Microsoft Corporation. Minden jog fenntartva. Az előadás csupán tájékoztató jellegű, a Microsoft Magyarország a benne szereplő esetleges hibákért vagy tévedésekért semmilyen felelősséget nem vállal.