forked from dotnet/samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
46 lines (34 loc) · 1.34 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
namespace Projection
{
public class Program
{
//Entry point of application
public static void Main(string[] args)
{
//Invoke the linq projection examples within the project
SelectSample1.MethodSyntaxExample();
SelectSample1.QuerySyntaxExample();
SelectSample2.MethodSyntaxExample();
SelectSample2.QuerySyntaxExample();
SelectSample3.MethodSyntaxExample();
SelectSample3.QuerySyntaxExample();
SelectSample4.QuerySyntaxExample();
SelectSample4.MethodSyntaxExample();
SelectSample5.MethodSyntaxExample();
SelectSample5.QuerySyntaxExample();
SelectSample6.MethodSyntaxExample();
SelectSample6.QuerySyntaxExample();
SelectSample7.Example();
SelectSample8.MethodSyntaxExample();
SelectSample8.QuerySyntaxExample();
SelectManySample1.QuerySyntaxExample();
SelectManySample2.MethodSyntaxExample();
SelectManySample2.QuerySyntaxExample();
SelectManySample3.MethodSyntaxExample();
SelectManySample3.QuerySyntaxExample();
SelectManySample4.MethodSyntaxExample();
SelectManySample4.QuerySyntaxExample();
SelectManySample5.Example();
}
}
}