We are trying to figure out a way to search for all the files that contain multiple terms. For instance that reference the Orders file and then the status field. Searching for the status field alone does not work as orders have status, items have status, ...
There are two options that would fulfill the need we have for searching that I can come up with:
Perform a search and then be able to search only within the results of the first search.
Perform a search using the AND keyword (Orders AND status) or equivalent regular expression concept using (?=) syntax.
Visual studio code does not appear to support either of these methods. Any suggestions how to accomplish this? Thanks!