This DTO
[Route("/{Module}/{Name}")]
public class ViewEntityList {
public string Module { get; set; }
public string Name { get; set; }
}
causes my app to error on startup with
RestPath '/{Module}/{Name}' on Type 'ViewEntityList' is not Valid
I could change the route to begin with a literal (e.g. /Entity/{Module}/{Name}) but it's not what I want; besides, my URLs are starting to look excessively long and un-REST-like.
Is it possible to begin a route with a variable? If not, is there another way to map any route with two parts to a specific DTO?