`
terryfeng
  • 浏览: 504518 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

LINQ 标准的查询操作符 连接 join in on equals

阅读更多

使用 join 子句可以根据特定的条件合并两个数据源,但之前要获得两个要连接的列表。

在一级方程式比 赛中,设有赛手冠军和制造商冠军。

赛手从GetChampions()方法中返回,制造商从GetConstructorChampions() 方法中返回。

现在要获得一个年份列表,列出每年的赛手和制造商冠军。

为此,先定义两个查询,用于查询赛手和制造商团队:

车手集合结构:

new Racer() 
{ 
FirstName = "Michael", 
LastName = "Schumacher", 
Country = "Germany", 
Starts = 250, 
Wins = 91, 
Years = new int[] { 1994, 1995, 2000, 2001, 2002, 2003, 2004 }, //冠军年
Cars = new string[] { "Benetton", "Ferrari" } 
}

制造商集合结构:

new Team() 
{ 
Name = "Ferrari", 
Years = new int[] { 1961, 1964, 1975, 1976, 1977, 1979, 1982, 1983, 1999, 2000, 2001, 2002, 2003, 2004, 2007 } //冠军年
}

 

private static void Join()
        {
            var racers = from r in Formula1.GetChampions()
                         from y in r.Years  //获得车手中的年份集合
                         where y > 2003  //判断年份
                         select new { Year = y, Name = r.FirstName + " " + r.LastName }; //匿名对象定义,年份和名字是集合
            var teams = from t in Formula1.GetContructorChampions()
                        from y in t.Years
                        where y > 2003
                        select new { Year = y, Name = t.Name }; //获得冠军年集合及制造商名字

有了这两个查询,再通过子句join t in teams on r.Year equals t.Year,根据赛手获得冠军的年份和制造商获得冠军的年份进行连接。

            var racersAndTeams = from r in racers
                                 join t in teams on r.Year equals t.Year   //和SQL的形式完全一样
                                 select new { Year = r.Year, Racer = r.Name, Team = t.Name };
                                 //select 子句定义了一个新的匿名类型,它包含Year、Racer 和Team 属性。



            Console.WriteLine("Year  Champion             Constructor Title");
            foreach (var item in racersAndTeams)
            {
                Console.WriteLine("{0}: {1,-20} {2}", item.Year, item.Racer, item.Team);
            }
        }
当然,也可以把它们合并为一个LINQ 查询,但这只是一种尝试:
 
private static void Join()
        {

            int year = 2003;
            var racersAndTeams = from r in
                                     from r1 in Formula1.GetChampions()
                                     from yr in r1.Years
                                     where yr > year
                                     select new { Year = yr, Name = r1.FirstName + " " + r1.LastName }
                                 join t in
                                     from t1 in Formula1.GetContructorChampions()
                                     from yt in t1.Years
                                     where yt > year
                                     select new { Year = yt, Name = t1.Name }
                                 on r.Year equals t.Year
                                 select new { Year = r.Year, Racer = r.Name, Team = t.Name };


            Console.WriteLine("Year  Champion             Constructor Title");
            foreach (var item in racersAndTeams)
            {
                Console.WriteLine("{0}: {1,-20} {2}", item.Year, item.Racer, item.Team);
            }
        }
 
结果如下:
 
 
image 
分享到:
评论

相关推荐

    LINQ标准查询操作符.pdf

    ### LINQ标准查询操作符详解 #### 一、投影操作符 **1. Select** - **定义**: `Select`操作符用于对集合中的每个元素应用指定的函数,并将结果返回为一个新的序列。此操作通常用来从原始数据集中提取特定属性或...

    linq标准查询操作符

    ### LINQ标准查询操作符详解 #### 一、投影操作符 **1. Select** `Select` 操作符用于从源序列中选择一系列值,并将其转换为新的序列。这种转换通常涉及从源序列中的每个元素生成一个新元素。在 LINQ 查询中,`...

    linq 简单查询示例

    join age in ages on name[0] equals age.ToString()[0] select new { Name = name, Age = age }; ``` 在LinqConsoleApplication这个项目中,你可以找到上述示例的具体实现,通过运行程序,你会看到这些查询如何...

    LINQ查询符列表[文].pdf

    4. **join, on, equals, into**: `join`关键字用于执行连接操作,`on`定义连接键,`equals`指定键的匹配条件,`into`则用于创建一个新的组合集合。这种连接并不局限于关系数据库,可以应用于任何具有关联键的数据...

    使用LINQ查询,linq基础

    join order in Orders on customer.Id equals order.CustomerId ``` ### 2.5 `group by`子句 `group by`子句用于按指定的键对数据进行分组: ```csharp group customer by customer.City into cityGroup ``` ## 3....

    LINQ快速入门(很不错)

    2. 查询操作符:LINQ包含一系列操作符,如`Where`(过滤)、`Select`(投影)、`GroupBy`(分组)、`Join`(连接)等,它们用于构建查询表达式。 3.匿名类型:在LINQ查询中,经常使用匿名类型来表示查询结果中的...

    探索C#中的LINQ:简化数据查询的艺术

    `Join`操作符用于连接两个序列中的元素,通常用于从多个表中获取关联数据。 **示例代码**: ```csharp using System; using System.Collections.Generic; using System.Linq; class Program { static void Main()...

    微软LINQ全集__英文.pdf

    join course in courses on student.CourseID equals course.ID select new { Student = student, Course = course }; ``` #### 五、总结 《微软LINQ全集》是一本全面介绍LINQ技术的书籍,涵盖了从基础知识到...

    Linq的使用.docx

    `join`操作符用于连接两个数据集,以下代码演示了基于“Name”字段的内连接: ```csharp var result = from q in dt1.AsEnumerable() join r in dt2.AsEnumerable() on q.Field("Name") equals r.Field("Name") ...

    linq to sql中文教程

    这些操作符用于集合运算,包括连接、合并、取交集和差集。 ```csharp var combinedData = firstList.Concat(secondList); ``` ##### 9. **Top/Bottom和Paging** Top和Bottom用于获取集合的前N个或后N个元素,...

    LINQ_to_SQL语法及实例大全

    #### Exists/In/Any/All/Contains操作符 - **Any** - **简单形式** - 示例:`bool hasAvailableProducts = (from p in Products where p.IsAvailable select p).Any();` - **带条件形式** - 示例:`bool ...

    duplicatewordremover_C#_linq_

    通过使用LINQ,开发者可以使用类似SQL的语法来操作内存中的对象,这使得代码更加简洁、易读且可维护。 在处理字符串中的单词时,我们可以将字符串分割成单词数组,然后利用LINQ的`Distinct()`方法来去除重复项。...

    LINQ To SQL 语法及实例大全

    join o in db.Orders on c.CustomerID equals o.CustomerID into jo from j in jo.DefaultIfEmpty() select new { Customer = c, Order = j }; ``` 进行左外部联接,确保客户表中的所有记录都被返回。 **5. ...

    LINQ to SQL

    - **一对多关系(1toMany)**:`var query = from c in db.Customers join o in db.Orders on c.CustomerID equals o.CustomerID select new { Customer = c, Order = o };` - **多对多关系(ManytoMany)**:涉及中间表...

Global site tag (gtag.js) - Google Analytics