首页 > 解决方案 > Convert IQueryable to URL query string

问题描述

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:

  1. filter
  2. orderBy
  3. pagination
  4. select

Anyone has done this before?

标签: c#asp.netasp.net-core.net-coreentity-framework-core

解决方案


推荐阅读