You can only do this using good old SQL.
You would need to concatenate all the fields you want to filter and add an alias to it.
SELECT Nome+' '+Marca as campoBusca from tabela_produto
The return of this select would be:
campoBusca
|Memória Ram DDR3 8Gb Notebook|
Then it would only be using a Where, but as we can not use alias in Where should be made a subquery, and in the return of this use the Where with the perador like so:
SELECT * FROM (SELECT Nome+' '+Marca as campoBusca from tabela_produto) AS tbl
WHERE tbl.campoBusca like '%Mem%DD%'
Important
In the field where the user will type the words to the search you must replace the spaces by % and it must be present at the beginning and end of the researched term, as well as this in the example %Mem%DD%, it is he who makes the "magic" of searching anywhere in the field.
Enter the code you normally use to make queries by name as there are two ways to get the result you want. Or by event
OnFilterRecordor by propertyFiltered.– Augusto Vasques
Really ended up not putting , I’m sorry.
– user129333