Beispiel #1
0
 //Entry point of application
 public void Main(string[] args)
 {
     //Invoke the linq restriction examples within the project
     WhereClause1.QuerySyntaxExample();
     WhereClause1.MethodSyntaxExample();
     WhereClause2.QuerySyntaxExample();
     WhereClause2.MethodSyntaxExample();
     WhereClause3.QuerySyntaxExample();
     WhereClause3.MethodSyntaxExample();
     WhereClause4.Example();
 }
Beispiel #2
0
 public void Main(string[] args)
 {
     var sample = new WhereClause1();
     sample.QuerySyntaxExample();
     sample.MethodSyntaxExample();
 }