I am trying to perform inter micro services communication with DDD repository, the repository can either query the local database or call the remote micro service rest API for data. I need to convert the IQueryable to query string in order to call the rest API with the following:
- filter
- orderBy
- pagination
- select
Anyone has done this before?