开发者

How to filter query results where name contains any of the words being searched for?

开发者 https://www.devze.com 2023-01-14 18:40 出处:网络
I\'m trying to modify some code that returns results from the database. Currently the code is as follows, and matches whatever funds have a name like the search term.

I'm trying to modify some code that returns results from the database. Currently the code is as follows, and matches whatever funds have a name like the search term.

        var ret = (from funds in queryable
                where
                    SqlMethods.Like(funds.Name, searchTerm)
                select
                    funds);

The problem with this is that it's too specific. If the search term is "pension growth" it'll only return results that have "pension growth" in the name. I'd like to change this to return all funds that have either "pension" or "growth" in the name (or whatever combination of search terms the user could include).

What I'd like to do is split the search term into its component parts and apply a SQL 'in' operator to the query like in ('pension', 'growth') or something, so t开发者_如何学Gohat it'd return anything that had some of the terms, but that doesn't appear to be an option.

Could somebody please suggest another way that I could go about this? Thanks.


You can try to use the Contains() method on a list:

var myListOfWords = new List<string>{"pension","growth","42"};
var result = from funds in queryable
             where myListOfWords.Contains(funds.Name)
             select funds;
0

精彩评论

暂无评论...
验证码 换一张
取 消