このクエリ エンティティ (c#) フォームの変換を手伝ってくれる人が必要です。
select *
from incident
where Details like'%Help%'
and status = 'Resolved'
or details like '%Help%' and Status = 'Closed'
私が試したことを見てください
incident = incident.Where(s => s.Details.ToUpper().Contains(SearchParam.ToUpper()));