zoukankan      html  css  js  c++  java
  • Linq联接

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    namespace Linq联接
    {
        class Program
        {
            public class Student 
            {
                public int stID;
                public string LastName;
            }
            public class CourseStudent
            {
                public string CourseName;
                public int stID;
            }
            static Student[] students = new Student[] { 
                        new Student { stID = 1, LastName = "Carson" } ,
                        new Student { stID = 2, LastName = "Jack" }, 
                        new Student { stID = 3, LastName = "Tom" } 
                         };
            static CourseStudent[] courseStudents = new CourseStudent[]{
            new CourseStudent{CourseName="asd",stID=1},
            new CourseStudent{CourseName="asd",stID=2},
            new CourseStudent{CourseName="sfh",stID=1},
            new CourseStudent{CourseName="dgfsd",stID=2},
            new CourseStudent{CourseName="dgfsd",stID=3},
            };
            static void Main(string[] args)
            {
                var query = from s in students          //s和c是迭代器
                            join c in courseStudents
                            on s.stID equals c.stID
                            where c.CourseName == "asd"
                            select s.LastName;
                foreach (var q in query)
                    Console.WriteLine("Student Taking asd :{0}",q);
                Console.ReadKey();
            }
        }
    }
  • 相关阅读:
    Virtual Studio 2010在Release模式下进行调试的设置方法
    OpenGL Shader
    OGRE的安装编译
    开源GIS平台空间数据管理与发布技术研究
    风靡世界的小游戏2048源代码
    成为优秀程序员的几个阶段
    颜色空间模型(HSVLABRGBCMYK)
    希望自己的博客被知名搜索引擎收录的网址
    我的第一篇博客
    当你的善良受到委屈时
  • 原文地址:https://www.cnblogs.com/sulong/p/4808051.html
Copyright © 2011-2022 走看看