コード例 #1
0
    static void Main(string[] args)
    {
        JoinDemonstration app = new JoinDemonstration();

        app.InnerJoin();
        app.GroupJoin();
        app.GroupInnerJoin();
        app.GroupJoin3();
        app.LeftOuterJoin();
        app.LeftOuterJoin2();

        // Keep the console window open in debug mode.
        Console.WriteLine("Press any key to exit.");
        Console.ReadKey();
    }
コード例 #2
0
        static void Main(string[] args)
        {
            // QueryScore.ListScoreOver(80);
            // QueryScore.ListScoreOverSort(1, 2);
            // QueryScore.ListScoreOverSort(2, 90);
            // QueryScore.ListScoreOverTransform(2);
            // testLINQFrom.CompoundFrom();
            // testLINQFrom.CrossJoin();
            // testLINQGroup.GroupByChar();
            // testLINQGroup.GroupByBool();

            JoinDemonstration app = new JoinDemonstration();

            app.InnerJoin();
            app.GroupJoin();
            app.GroupInnerJoin();
            app.GroupJoin3();
            // app.LeftOuterJoin();
            // app.LeftOuterJoin2();
            app.InnerJoinAndUpdate();

            // LeftJoinDemonstration ljApp = new LeftJoinDemonstration();
            // ljApp.LeftOuterJoin();
        }
コード例 #3
0
    static void Main(string[] args)
    {
        JoinDemonstration app = new JoinDemonstration();

            app.InnerJoin();
            app.GroupJoin();
            app.GroupInnerJoin();
            app.GroupJoin3();
            app.LeftOuterJoin();
            app.LeftOuterJoin2();

            // Keep the console window open in debug mode.
            Console.WriteLine("Press any key to exit.");
            Console.ReadKey();
    }