You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Not sure EF knows about string.Join(), but it's an easy concatenation. There are other ways to do it too, the worst being to actually get the results into memory and using string.Join(). Another way is to have a computed column on that database table, that holds exactly the value you want => Property1 + " " + Property2. Then, you use Search() on this column.
What i want to do;
query.Search(x => string.Join(" ", x.Property1, x.Property2)).Containing("searchTerm");
This method does not work well. is there another way?
thanks.
The text was updated successfully, but these errors were encountered: