Linq to SQL 多表选择作为键值对

发布于 2024-11-08 19:02:26 字数 785 浏览 0 评论 0 原文

我正在努力将一组结果作为 List> 返回到自动完成插件,

下面是我当前的选择语句

var fetchStudents = (from tg in dc.TEACHINGGROUPs
     from sg in dc.STUGROUPs
         .Where(sg => sg.GroupId == tg.GroupId)
         .DefaultIfEmpty()
     where sg.SetId == strSetId && tg.LecturerId == strLecturerID
     from stu in dc.STUDENTRECORDs
         .Where(stu => stu.StudentId == sg.StudentId)
         .DefaultIfEmpty()
         where stu.Name.StartsWith(name)
     select new { studentName = stu.Name, studentID = stu.StudentId }).Distinct();

有没有一种方法可以让我选择每个结果作为List> 以便我可以以正确的格式返回结果集?我有一种感觉,它正在盯着我的脸,但已经盯着它好几个小时了,我的大脑坏了。

I am struggling to return a set of results to an automplete plugin as a List<KeyValuePair<string, string>>

Below is my current select statement

var fetchStudents = (from tg in dc.TEACHINGGROUPs
     from sg in dc.STUGROUPs
         .Where(sg => sg.GroupId == tg.GroupId)
         .DefaultIfEmpty()
     where sg.SetId == strSetId && tg.LecturerId == strLecturerID
     from stu in dc.STUDENTRECORDs
         .Where(stu => stu.StudentId == sg.StudentId)
         .DefaultIfEmpty()
         where stu.Name.StartsWith(name)
     select new { studentName = stu.Name, studentID = stu.StudentId }).Distinct();

Is there a way that I can select each result as a List<KeyValuePair<string, string>> so that I can return the resultset in the correct format? I have a feeling it is staring me in the face but have been at it for hours and my brain is broken..

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

流云如水 2024-11-15 19:02:26
(from …
 select new KeyValuePair<string, string>(stu.Name, stu.StudentId))
    .Distinct().ToList()
(from …
 select new KeyValuePair<string, string>(stu.Name, stu.StudentId))
    .Distinct().ToList()
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文