Hi all,
Does anyone have a suggestion on how to pass a dynamic predciate expression over a web service?
I'm using WCF.
I would like to allow the client to build a filtering predicate expression. I was thinking of passing an array of "FilterDTOs".
FilterDTOs would have a fieldname, predicate, and value.
On the server side, I would construct the filter based on the DTOs.
Is this the best way to go?
Any other suggestions? Thanks!