asp.net(MVC) linq语句多条件查询

asp.net(MVC) linq语句多条件查询,第1张

linq的多条件查询无非就是用where方法。

var entitys=entityFacade.GetAll().ToDataSourceResult(request, ModelState)

 if(!string.IsNullOrEmpty(SID)){

   entitys=entitys.Where(x=>x.SID=='123')

 }

  if(!string.IsNullOrEmpty(SPwd)){

   entitys=entitys.Where(x=>x.SPwd=='123')

 }

 

 return Json(entitys)

Linq 查询吗?

var query=db.tables.where(o=>o.name=="dasdas"&&age<=30&&age>=21).tolist()


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/10648389.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-10
下一篇 2023-05-10

发表评论

登录后才能评论

评论列表(0条)

保存