我有3个表连接主要和外国概念。
模型 - > studentRecord
public class studentRecord
{
public string studentName{ get; set; }
public int year{ get; set; }
}
表1 - >学生
studentId studentName
----------------------
1 Sam
2 Mani
3 rajah
表2 - >受试者
subjectid subjectName
------------------------
1 english
2 maths
3 physics
表3 - >注册
registerId studentId subjectid Year
--------------------------------------------
1 1 1 1
2 1 2 1
3 1 3 1
4 1 1 2
5 1 2 2
6 1 3 2
我希望得到学生第二年的记录 我的linq代码
var op = (from student in db.student.where(x => x.studentId == 1)
join register in db.register
on student.studentId equals register.studentId
select new studentRecord{studentName = student.studentName, year = register.Year}).ToList<studentRecord>().Max(x => x.Year)
我收到错误。是否有任何表现良好的应用程序。提前致谢
答案 0 :(得分:1)
在Linqpad中测试了查询,以下查询对我来说效果很好。
void Main()
{
var op = (from student in Students.Where(x => x.StudentId == 1)
join register in Registers
on student.StudentId equals register.StudentId
select new {student = student.StudentName, Year = register.Year})
.Max(x => x.Year);
op.Dump();
}
分析器显示以下SQL。
exec sp_executesql N'SELECT MAX([t1].[Year]) AS [value]
FROM [student] AS [t0]
INNER JOIN [register] AS [t1] ON [t0].[studentId] = [t1].[studentId]
WHERE [t0].[studentId] = @p0',N'@p0 int',@p0=1
无论如何,可能想要的是:
from student in Students.Where(s => s.StudentId == 1)
join register in Registers.Where(r => r.Year == Registers.Max(x => x.Year))
on student.StudentId equals register.StudentId
select new studentRecord
{
studentName = student.StudentName,
year = register.Year
})
.ToList<studentRecord>();
Students
位于您的代码db.student
等中。