EntityFramework 使用Linq处理内连接(inner join)、外链接(left/right outer join)、多表查询 场景

https://www.cnblogs.com/xinwang/p/6145837.html

场景:在实际的项目中使用EntityFramework都会遇到使用Ef处理连接查询的问题,这里做一些小例子如何通过Linq语法处理内连接(inner join)、外连接(left/right outer join);

废话不多说先看实体类:

 

 1.内连接:

Linq:

复制代码
var query = from st in context.SchoolBoys
            join gl in context.SchoolGirls on st.GirlfriendId equals gl.Id
            select new
            {
                Id = st.Id,
                Name = st.Name,
                GirlfriendName = gl.Name
            };
复制代码

sql:

复制代码
SELECT 
    1 AS [C1], 
    [Extent1].[Id] AS [Id], 
    [Extent1].[Name] AS [Name], 
    [Extent2].[Name] AS [Name1]
    FROM  [dbo].[SchoolBoys] AS [Extent1]
    INNER JOIN [dbo].[SchoolGirls] AS [Extent2] ON [Extent1].[GirlfriendId] = [Extent2].[Id]
复制代码

2.外连接(这里只介绍左外连接)

Linq:

复制代码
var  query = from st in context.SchoolBoys
             join cl in context.Classes on st.ClassId equals cl.Id into cls
             from c in cls.DefaultIfEmpty()
             select new
             {
                 Id = st.Id,
                 Name = st.Name,
                 ClassName = c.Name
             };
复制代码

sql:

复制代码
SELECT 
    1 AS [C1], 
    [Extent1].[Id] AS [Id], 
    [Extent1].[Name] AS [Name], 
    [Extent2].[Name] AS [Name1]
    FROM  [dbo].[SchoolBoys] AS [Extent1]
    LEFT OUTER JOIN [dbo].[Classes] AS [Extent2] ON [Extent1].[ClassId] = [Extent2].[Id]
复制代码

3.多表混合

linq:

复制代码
var query3 = from st in context.SchoolBoys
             join gl in context.SchoolGirls on st.GirlfriendId equals gl.Id into sgs
             from sg in sgs
             join cl in context.Classes on sg.ClassId equals cl.Id into cls
             from cla in cls.DefaultIfEmpty()
             join g in context.Grades on cla.GradeId equals g.Id into gs
             from gr in gs.DefaultIfEmpty()
             select new
             {
                  Id = st.Id,
                  Name = st.Name,
                  ClassName = cla.Name,
                  GradeName = gr.Name
             };
复制代码

 

sql:

复制代码
    SELECT 
    1 AS [C1], 
    [Extent1].[Id] AS [Id], 
    [Extent1].[Name] AS [Name], 
    [Extent3].[Name] AS [Name1], 
    [Extent4].[Name] AS [Name2]
    FROM    [dbo].[SchoolBoys] AS [Extent1]
    INNER JOIN [dbo].[SchoolGirls] AS [Extent2] ON [Extent1].[GirlfriendId] = [Extent2].[Id]
    LEFT OUTER JOIN [dbo].[Classes] AS [Extent3] ON [Extent2].[ClassId] = [Extent3].[Id]
    LEFT OUTER JOIN [dbo].[Grades] AS [Extent4] ON [Extent3].[GradeId] = [Extent4].[Id]
复制代码

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值