1
我想根據我的querystring參數路由兩個不同的RequestDTO類。 PFB這兩種情況。根據查詢字符串參數名稱在servicestack中路由?
Scenario 1:-
localhost:8080/myservice?type="abc" //Service URL
// should be called below DTO class
public class TypeRequestDTO //DTO
{
public string type;
}
Scenario 2:-
--------------------------------------------------
localhost:8080/myservice?Name="xyz" //Service URL
// should be called below DTO class
public class NameRequestDTO //DTO
{
public string Name;
}
在這兩種情景,base url
是相同的(/myservice
),但我想這樣做,根據querystring parameter
路由。有沒有可能的方法來做到這一點。