溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

linq多條件查詢?cè)趺词褂?/h1>
發(fā)布時(shí)間:2021-12-02 09:29:45 來(lái)源:億速云 閱讀:155 作者:iii 欄目:編程語(yǔ)言

本篇內(nèi)容介紹了“l(fā)inq多條件查詢?cè)趺词褂谩钡挠嘘P(guān)知識(shí),在實(shí)際案例的操作過(guò)程中,不少人都會(huì)遇到這樣的困境,接下來(lái)就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!

linq多條件查詢,當(dāng)條件為NUll時(shí)不做查詢,只有條件有值時(shí)才作為查詢條件查詢。下面我們就給大家進(jìn)行一下分析。

時(shí)間 AddTime

名稱 Name

//添加時(shí)間開(kāi)始          string strAddTimeStart = txtAddTimeStart.Text;          DateTime AddTimeStart = SqlDateTime.MinValue.Value;          if (!string.IsNullOrEmpty(strAddTimeStart))          {              AddTimeStart = Convert.ToDateTime(strAddTimeStart );          }          //添加時(shí)間結(jié)束          string strAddTimeEnd = txtAddTimeEnd.Text;          DateTime AddTimeEnd = SqlDateTime.MaxValue.Value;          if (!string.IsNullOrEmpty(strAddTimeEnd))          {              AddTimeEnd = Convert.ToDateTime(strAddTimeEnd);          }  var resultsql = from w in students   where  (!string.IsNullOrEmpty(strAddTimeStart) ? AddTimeStart >= w.addTime : true) &&   (!string.IsNullOrEmpty(strAddTimeEnd) ? AddTimeEnd >= w.addTime : true) &&   (!string.IsNullOrEmpty(OCState) ? w.Name.Equals(Name) : true)     select new   {w.name,    w.sex     };

linq多條件查詢需要注意的是,下面這樣是不對(duì)的,會(huì)報(bào)無(wú)法識(shí)別的DateTime。

(!string.IsNullOrEmpty(strAddTimeStart) ? Convert.ToDateTime(AddTimeStart) >= w.addTime : true)

所以時(shí)間必須在外邊轉(zhuǎn)換。

“l(fā)inq多條件查詢?cè)趺词褂谩钡膬?nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí)可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!

向AI問(wèn)一下細(xì)節(jié)
AI