User1263422540 posted
I am trying to define an action that takes two parameters one a string and one a Dictionary<string, object>. When I build an edm model I specify the type of the parameters like:
var createPresentationFromTemplate = templates.EntityType.Action("CreatePresentationFromTemplate");
createPresentationFromTemplate.Parameter<string>("PresentationId");
createPresentationFromTemplate.Parameter<Dictionary<string, object>>("PresentationProperties");
When I put a breakpoint in the server the ODataActionParameters parameters always comes back as null. Does anyone have an example of an OData action that takes a Dictionary<U,B> as a parameter type?
Thank you.