简体   繁体   English

我需要一些帮助来编写此linq查询

[英]I would need a little help to write this linq query

I have this SQL query 我有这个SQL查询

select case when AllowanceId is null then 2  else AllowanceId end as AllowanceId
     , d.descen as domdescen
     , t.descen as typdescen
     , case when qty is null then 0 else qty end as qty
     , u.descen as unidescen
from (select t.allowancetypeid, d.allowancedomainid 
      from allowancedomain as d, allowancetype as t
      where t.allowancetypeid in (1,2) and d.active = 1 and t.active = 1) as a left join 
    allowanceqty as q on a.allowancetypeid = q.allowancetypeid and
                         a.allowancedomainid = q.allowancedomainid and 
                         q.allowanceid = 2 inner  join 
    allowancedomain as d on a.allowancedomainid = d.allowancedomainid
    inner  join 
    allowancetype as t on a.allowancetypeid = t.allowancetypeid
    inner join
    unit as u on case when q.unitid is null then 1 else q.unitid end = u.unitid

there is one variable in that query and it's number 2 in the select clause(first line) and the "= 2" in the from clause(in the middle) 该查询中有一个变量,它在select子句(第一行)中为2,在from子句中(中间)为“ = 2”

I wrote what I wanted, look at my answer below 我写了我想要的东西,下面看我的答案

after a long try/retry/try/retry here is what I wanted.... 经过长时间的尝试/重试/尝试/重试,这就是我想要的...。

from a in (from d in AllowanceDomains _
        from t in AllowanceTypes _
        where (new integer(){1,2}).contains(t.AllowanceTypeID) and t.active = true and d.active=true _
        select  t.allowancetypeid,tdescen =t.descen, d.allowancedomainid,ddescen=d.descen)  _
group join qqq in AllowanceQties on new with {.k1 = a.allowancetypeid, .k2 = a.allowancedomainid, .k3 = 2} equals _
                            new with {.k1 = qqq.allowancetypeid, .k2 = qqq.allowancedomainid, .k3 = qqq.allowanceid} into qq = group _
from q in qq.DefaultIfEmpty _
join u in units on if(object.equals(q.unitid,nothing),1,q.unitid) equals u.unitid _
select  AllowanceID =if(object.equals(q.AllowanceID,nothing),2,q.AllowanceID) ,a.tdescen,a.ddescen,qty = if(object.equals(q.qty,nothing),0,q.qty),u.descen

Linqer is your friend. Linqer是您的朋友。 http://www.sqltolinq.com . http://www.sqltolinq.com It allows you to convert almost all sql to linq and works with your database and dbml. 它允许您将几乎所有的sql转换为linq,并可以与数据库和dbml一起使用。 It has never failed me so far. 到目前为止,这从未使我失败。 It's not a free product but well worth the money. 它不是免费产品,但物有所值。 [I have no associations whatsoever with Linqer] [我与Linqer没有任何关联]

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM