If I have a resource handler method receiving an object list as parameter (int list, string list or any object type list), i.e.:

 public class TasksCollecionHandler 
    { 
        public TaskCollection GetTasksByEngineer(List<int> engineerIds) 
        { 
            .... 
        } 
        public TaskCollecion GetTasksByEngineer(List<Engineer> engineers) 
        { 
           .... 
        } 
    } 
  1. Is OpenRasta supporting this kind of arguments?
  2. How the HTTP request including values for kind of arguments should look like?
link|improve this question
feedback

1 Answer

Depends on the codec. Using json or xml data contracts it'd be whatever format the datacontract mapping follows.

If you use forms and html, the format would be

engineers:0.FirstName=john&engineers:0.LastName=doe&engineers:1.FirstName=other
link|improve this answer
If we take the sample of List<int> can it be put in a singe GET request string? – user1137909 Jan 24 at 19:05
I haven't written any code to cover that scenario, so not out of the box no. You can always provide your own binder on the attribute to parse the string yourself i'd think. – serialseb Jan 25 at 16:12
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.