@@ -130,7 +130,7 @@ Object-Relational Mapping (ORM) which allows you:
130
130
131
131
- Work with data-store in object-oriented way
132
132
- Query any supported data source
133
- - Potantially change data source
133
+ - Potentially change data source
134
134
- Has own change tracking system which can be extended
135
135
- Business specifications can be reused throughout your project
136
136
- Currently prefered data access in wich Microsoft invests the most
@@ -453,8 +453,8 @@ A group join produces a sequence of object arrays based on properties equivalenc
453
453
```cs
454
454
455
455
from s in Students
456
- join c in Courses on s .StudentID equals a .StudentID into t
457
- select { StudentName = s .Name , Courses = t }
456
+ join c in Courses on s .StudentID equals s .StudentID into t
457
+ select new { StudentName = s .Name , Courses = t }
458
458
459
459
```
460
460
@@ -474,7 +474,7 @@ If there are no columns matching in the right table, it returns NULL values.
474
474
from s in Students
475
475
join a in Addresses on s .AddressID equals a .AddressID into t
476
476
from st in t .DefaultIfEmpty ()
477
- select { AddressID = (int ?)st .AddressID , st .City , StudentName = s .Name }
477
+ select new { AddressID = (int ?)st .AddressID , st .City , StudentName = s .Name }
478
478
479
479
```
480
480
@@ -490,7 +490,7 @@ Cross join returns records or rows that are multiplication of record number from
490
490
491
491
from s in Students
492
492
from a in Addresses
493
- select { a .City , s .Name }
493
+ select new { a .City , s .Name }
494
494
495
495
```
496
496
@@ -527,8 +527,8 @@ var count = nums.Count(); // 9
527
527
528
528
``` cs
529
529
530
- int [] nums = {500 ,100 ,50 ,20 ,10 ,5 ,2 ,1 ,1000 };
531
- var count = nums .Sum (); // 1688
530
+ int [] nums = {300 ,100 ,50 ,20 ,10 ,5 ,2 ,1 ,1000 };
531
+ var count = nums .Sum (); // 1488
532
532
533
533
```
534
534
@@ -574,8 +574,8 @@ Performs custom aggregation:
574
574
575
575
``` cs
576
576
577
- int [] nums = {500 ,100 ,50 ,20 ,10 ,5 ,2 ,1 ,1000 };
578
- var sum = nums .Aggregate (0 , (total , n ) => total + n ); // 1688
577
+ int [] nums = {300 ,100 ,50 ,20 ,10 ,5 ,2 ,1 ,1000 };
578
+ var sum = nums .Aggregate (0 , (total , n ) => total + n ); // 1488
579
579
580
580
```
581
581
@@ -644,7 +644,7 @@ IEnumerable<string> strings = values.OfType<string>();
644
644
object [] values = new object [] {" 1" , " 2" , " 3" , " AAA" , 5 };
645
645
IEnumerable < string > strings = values .Cast <string >();
646
646
// an exception will be thrown
647
- // because the last element is not string
647
+ // because the last element is not string
648
648
649
649
```
650
650
@@ -670,4 +670,6 @@ var flatten = values.SelectMany(s => s);
670
670
671
671
Additional resources:
672
672
673
- - https://weblogs.asp.net/dixin/linq-via-csharp
673
+ - https://weblogs.asp.net/dixin/linq-via-csharp
674
+ - https://codeblog.jonskeet.uk/category/edulinq
675
+ - http://linqsamples.com
0 commit comments