from x in
  (from p 
in obj.PDFTemplateSet
   
where p.Status != intStatusDeleted
   select 
new
          {
             p,
             p.Service
           })
 
where x.Service.ServiceCode.Contains(strPara)
 select x.p;

相关文章:

  • 2021-06-14
  • 2021-10-12
  • 2022-12-23
猜你喜欢
  • 2021-07-13
  • 2022-12-23
  • 2022-12-23
  • 2021-09-15
  • 2021-08-02
相关资源
相似解决方案