ICode9

精准搜索请尝试: 精确搜索
首页 > 编程语言> 文章详细

c#-groupby后的linq无法获取列值

2019-11-23 03:07:49  阅读:345  来源: 互联网

标签:join linq sql c group-by


我正在通过联接从多个表中获取数据,我想将特定列值上的数据分组,但是在按语句分组之后,我可以访问我的别名及其属性.我在犯什么错误?

public List<PatientHistory> GetPatientHistory(long prid)
{
    using(var db = new bc_limsEntities())
    {
        List<PatientHistory> result = 
            (from r in db.dc_tresult
             join t in db.dc_tp_test on r.testid equals t.TestId into x
             from t in x.DefaultIfEmpty()
             join a in db.dc_tp_attributes on r.attributeid equals a.AttributeId into y
             from a in y.DefaultIfEmpty()
             where r.prid == prid
             group new {r,t,a} by new {r.testid} into g
             select new PatientHistory
             {
                 resultid = r.resultid,
                 bookingid = r.bookingid,
                 testid = r.testid,
                 prid = r.prid,
                 attributeid = r.attributeid,
                 result = r.result,
                 Test_Name = t.Test_Name,
                 Attribute_Name = a.Attribute_Name,
                 enteredon = r.enteredon,
                 Attribute_Type = a.Attribute_Type
             }).ToList();
        return result;
    }
}

解决方法:

您这样做的方式是错误的.正如乔恩所说,在使用别名r,t,a对序列进行分组之后,它不存在.分组后,您将在g的每个元素中收到序列r,t,a的序列g.如果要从每个组中获取一个对象(例如最近的对象),则应尝试以下操作:

List<PatientHistory> result = 
    (from r in db.dc_tresult
     join t in db.dc_tp_test on r.testid equals t.TestId into x
     from t in x.DefaultIfEmpty()
     join a in db.dc_tp_attributes on r.attributeid equals a.AttributeId into y
     from a in y.DefaultIfEmpty()
     where r.prid == prid
     group new {r,t,a} by new {r.testid} into g
     select new PatientHistory
     {
         resultid = g.Select(x => x.r.resultid).Last(), // if you expect single value get it with Single()
         // .... here add the rest properties
         Attribute_Type = g.Select(x => x.a.Attribute_Type).Last()
     }).ToList();

标签:join,linq,sql,c,group-by
来源: https://codeday.me/bug/20191123/2064698.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有