How to use Dynamic LINQ (System.Linq.Dynamic) for LIKE operation?

前端 未结 5 1738
萌比男神i
萌比男神i 2021-02-04 07:31

Can any body tell me how can I use a LIKE operator using System.Linq.Dynamic?

I need to add more than one LIKE expression in my dynamic where query

5条回答
  •  逝去的感伤
    2021-02-04 08:11

    This will allow the LIKE operator on integer fields:

    .Where(searchField + ".ToString().Contains(@0)", searchString);
    

提交回复
热议问题