Implementing individual property search on the server side
Implementing individual property search on the server side
garvincasimir
Posts: 3Questions: 1Answers: 0
Hi Allen,
I would like to implement Individual property search in my c# datatables parser library for .net core but I am not sure what the logic should be. Here is an example for global search:
Fields: A,B,C
Search Term: findme
Query: Where A contains('findme') or B contains('findme') or C contains('findme')
- Would would the logic be if we had the same fields but
Search term for A: findMeInA
Search term for B: findMeInB
Search term for C: findMeInC - If we had both a global search and individual property search would should the expected logic be?
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
is how DataTables would implement column searching for your first example.
With a global search it would do
Allan
Thanks Allen. Exactly what I needed.