linq 怎样写 case when 语句
发布网友
发布时间:2023-07-12 10:01
我来回答
共2个回答
热心网友
时间:2024-11-13 21:25
case-单词讲解(释义、例句)
热心网友
时间:2024-11-13 21:26
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)