一起谈.NET技术,通过16道练习学习Linq和Lambda

简介: 1、 查询Student表中的所有记录的Sname、Ssex和Class列。 select sname,ssex,class from studentLinq: from s in Students select new { s.SNAME, s.SSEX, s.CLASS }Lambda: Students.Select( s => new { SNAME = s.SNAME,SSEX = s.SSEX,CLASS = s.CLASS })2、 查询教师所有的单位即不重复的Depart列。

1 查询Student表中的所有记录的SnameSsexClass列。 

 
  
select sname,ssex,class from student
Linq:
from s
in Students
select new
{
s.SNAME,
s.SSEX,
s.CLASS
}
Lambda:
Students.Select( s
=> new {
SNAME = s.SNAME,SSEX = s.SSEX,CLASS = s.CLASS
})


2 查询教师所有的单位即不重复的Depart列。
 

 
 
select distinct depart from teacher
Linq:
from t
in Teachers.Distinct()
select
t.DEPART
Lambda:
Teachers.Distinct().Select( t
=> t.DEPART)

 

3 查询Student表的所有记录。
 

 
 
select * from student
Linq:
from s
in Students
select
s
Lambda:
Students.Select( s
=> s)

 

4 查询Score表中成绩在6080之间的所有记录。 

 
  
select * from score where degree between 60 and 80
Linq:
from s
in Scores
where s.DEGREE >= 60 && s.DEGREE < 80
select
s
Lambda:
Scores.Where(
s
=> (
s.DEGREE >= 60 && s.DEGREE < 80
)
)

 

5 查询Score表中成绩为858688的记录。 

 
  
select * from score where degree in (85,86,88)
Linq:
In
from s in Scores
where (
new decimal[]{85,86,88}
).Contains(s.DEGREE)
select
s
Lambda:
Scores.Where( s
=> new Decimal[] {85,86,88 }.Contains(s.DEGREE))
Not in
from s in Scores
where !(
new decimal[]{85,86,88}
).Contains(s.DEGREE)
select
s
Lambda:
Scores.Where( s
=> !(new Decimal[]{85,86,88 }.Contains(s.DEGREE)))

  Any()应用:双表进行Any时,必须是主键为(String)
  CustomerDemographics CustomerTypeID(String)
  CustomerCustomerDemos (CustomerID CustomerTypeID)(String)
  一个主键与二个主建进行Any(或者是一对一关键进行Any)不可,以二个主键于与一个主键进行Any

 
 
from e in CustomerDemographics
where !e.CustomerCustomerDemos.Any()
select e

from c in Categories
where !c.Products.Any()
select c

 

 

6 查询Student表中"95031"班或性别为""的同学记录。 

 
  
select * from student where class ='95031' or ssex= N'女'
Linq:
from s in Students
where s.CLASS == "95031"
|| s.CLASS == "女"
select
s
Lambda:
Students.Where(s
=> ( s.CLASS == "95031" || s.CLASS == "女"))

 

7 Class降序查询Student表的所有记录。

 
 
select * from student order by Class DESC
Linq:
from s
in Students
orderby s.CLASS descending
select
s
Lambda:
Students.OrderByDescending(s
=> s.CLASS)

 

8 Cno升序、Degree降序查询Score表的所有记录。 

 
  
select * from score order by Cno ASC,Degree DESC
Linq:(这里Cno ASC在linq中要写在最外面)
from s
in Scores
orderby s.DEGREE descending
orderby s.CNO ascending
select
s
Lambda:
Scores.OrderByDescending( s
=> s.DEGREE)
.OrderBy( s => s.CNO)

 

9 查询"95031"班的学生人数。

 
  
select count(*) from student where class = '95031'
Linq:
( from s in Students
where s.CLASS == "95031"
select
s
).Count()
Lambda:
Students.Where( s
=> s.CLASS == "95031" )
.Select( s => s)
.Count()

 

10、查询Score表中的最高分的学生学号和课程号。 

 
  
select distinct s.Sno,c.Cno from student as s,course as c ,score as sc
where s.sno=(select sno from score where degree = (select max(degree) from score))
and c.cno = (select cno from score where degree = (select max(degree) from score))
Linq:
(
from s
in Students
from c in Courses
from sc in Scores
let maxDegree = (from sss in Scores
select sss.DEGREE
).Max()
let sno = (from ss in Scores
where ss.DEGREE == maxDegree
select ss.SNO).Single().ToString()
let cno = (from ssss in Scores
where ssss.DEGREE == maxDegree
select ssss.CNO).Single().ToString()
where s.SNO == sno && c.CNO == cno
select new {
s.SNO,
c.CNO
}
).Distinct()

  操作时问题?执行时报错: where s.SNO == sno(这行报出来的) 运算符"=="无法应用于"string""System.Linq.IQueryable<string>"类型的操作数
  解决:
  原:let sno = (from ss in Scores
                where ss.DEGREE == maxDegree
                select ss.SNO).ToString()
      Queryable().Single()
返回序列的唯一元素;如果该序列并非恰好包含一个元素,则会引发异常。
  解:let sno = (from ss in Scores
                where ss.DEGREE == maxDegree
                select ss.SNO).Single().ToString()
 

11、查询'3-105'号课程的平均分。

 
  
select avg(degree) from score where cno = '3-105'
Linq:
(
from s in Scores
where s.CNO == "3-105"
select
s.DEGREE
).Average()
Lambda:
Scores.Where( s
=> s.CNO == "3-105")
.Select( s => s.DEGREE)
.Average()

 


12、查询Score表中至少有5名学生选修的并以3开头的课程的平均分数。

 
  
select avg(degree) from score where cno like '3%' group by Cno having count(*)>=5
Linq:
from s in Scores
where s.CNO.StartsWith("3")
group s by s.CNO
into cc
where cc.Count() >= 5
select cc.Average( c =>
c.DEGREE)
Lambda:
Scores.Where( s
=> s.CNO.StartsWith("3") )
.GroupBy( s => s.CNO )
.Where( cc => ( cc.Count() >= 5) )
.Select( cc => cc.Average( c => c.DEGREE) )
  Linq: SqlMethod
  like
也可以这样写 :
    s.CNO.StartsWith("3") or SqlMethods.Like(s.CNO,"%3")


13、查询最低分大于70,最高分小于90Sno列。

 
  
select sno from score group by sno having min(degree) > 70 and max(degree) < 90
Linq:
from s
in Scores
group s by s.SNO
into ss
where ss.Min(cc => cc.DEGREE) > 70 && ss.Max( cc => cc.DEGREE) < 90
select new
{
sno =
ss.Key
}
Lambda:
Scores.GroupBy (s
=> s.SNO)
.Where (ss => ((ss.Min (cc => cc.DEGREE) > 70) && (ss.Max (cc => cc.DEGREE) < 90)))
.Select ( ss => new {
sno = ss.Key
})

 


14、查询所有学生的SnameCnoDegree列。

 
  
select s.sname,sc.cno,sc.degree from student as s,score as sc where s.sno = sc.sno
Linq:
from s
in Students
join sc in Scores
on s.SNO equals sc.SNO
select new

{
s.SNAME,
sc.CNO,
sc.DEGREE
}
Lambda:
Students.Join(Scores, s
=> s.SNO,
sc => sc.SNO,
(s,sc) => new{
SNAME = s.SNAME,
CNO = sc.CNO,
DEGREE = sc.DEGREE
})

 


15、查询所有学生的SnoCnameDegree列。

 
  
select sc.sno,c.cname,sc.degree from course as c,score as sc where c.cno = sc.cno
Linq:
from c
in Courses
join sc in Scores
on c.CNO equals sc.CNO
select new

{
sc.SNO,c.CNAME,sc.DEGREE
}
Lambda:
Courses.Join ( Scores, c
=> c.CNO,
sc => sc.CNO,
(c, sc) => new
{
SNO = sc.SNO,
CNAME = c.CNAME,
DEGREE = sc.DEGREE
})

 


16、查询所有学生的SnameCnameDegree列。

 
  
select s.sname,c.cname,sc.degree from student as s,course as c,score as sc where s.sno = sc.sno and c.cno = sc.cno
Linq:
from s
in Students
from c in Courses
from sc in Scores
where s.SNO == sc.SNO && c.CNO == sc.CNO
select new { s.SNAME,c.CNAME,sc.DEGREE }

 

主要参考文章链接:http://www.cnblogs.com/RuiLei/archive/2008/11/09/1329905.html
目录
相关文章
|
4月前
|
监控 Cloud Native 测试技术
.NET技术深度解析:现代企业级开发指南
每日激励:“不要一直责怪过去的自己,他曾经站在雾里也很迷茫”。我是蒋星熠Jaxonic,一名在代码宇宙中探索的极客旅人。从.NET Framework到.NET 8,我深耕跨平台、高性能、云原生开发,践行领域驱动设计与微服务架构,用代码书写技术诗篇。分享架构演进、性能优化与AI融合前沿,助力开发者在二进制星河中逐光前行。关注我,共探技术无限可能!
.NET技术深度解析:现代企业级开发指南
|
4月前
|
人工智能 API 数据库
Semantic Kernel .NET 架构学习指南
本指南系统解析微软Semantic Kernel .NET架构,涵盖核心组件、设计模式与源码结构,结合实战路径与调试技巧,助你从入门到贡献开源,掌握AI编排开发全栈技能。
428 2
|
10月前
|
SQL 小程序 API
如何运用C#.NET技术快速开发一套掌上医院系统?
本方案基于C#.NET技术快速构建掌上医院系统,结合模块化开发理念与医院信息化需求。核心功能涵盖用户端的预约挂号、在线问诊、报告查询等,以及管理端的排班管理和数据统计。采用.NET Core Web API与uni-app实现前后端分离,支持跨平台小程序开发。数据库选用SQL Server 2012,并通过读写分离与索引优化提升性能。部署方案包括Windows Server与负载均衡设计,确保高可用性。同时针对API差异、数据库老化及高并发等问题制定应对措施,保障系统稳定运行。推荐使用Postman、Redgate等工具辅助开发,提升效率与质量。
420 0
|
开发框架 算法 .NET
C#/.NET/.NET Core技术前沿周刊 | 第 15 期(2024年11.25-11.30)
C#/.NET/.NET Core技术前沿周刊 | 第 15 期(2024年11.25-11.30)
236 6
|
开发框架 Cloud Native .NET
C#/.NET/.NET Core技术前沿周刊 | 第 16 期(2024年12.01-12.08)
C#/.NET/.NET Core技术前沿周刊 | 第 16 期(2024年12.01-12.08)
246 6
|
监控 前端开发 API
一款基于 .NET MVC 框架开发、功能全面的MES系统
一款基于 .NET MVC 框架开发、功能全面的MES系统
484 5
|
开发框架 前端开发 .NET
ASP.NET CORE 3.1 MVC“指定的网络名不再可用\企图在不存在的网络连接上进行操作”的问题解决过程
ASP.NET CORE 3.1 MVC“指定的网络名不再可用\企图在不存在的网络连接上进行操作”的问题解决过程
494 0
|
开发框架 前端开发 JavaScript
ASP.NET MVC 教程
ASP.NET 是一个使用 HTML、CSS、JavaScript 和服务器脚本创建网页和网站的开发框架。
287 7
|
存储 开发框架 前端开发
ASP.NET MVC 迅速集成 SignalR
ASP.NET MVC 迅速集成 SignalR
308 0