SimplifyNet / Simplify.Web.Postman

Postman collection and environment generation extension for Simplify.Web.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Cannot dynamically create an instance of type array

rpagyc opened this issue · comments

Unable to generate postman collection for controller which accepts array of objects in request (ex. AsyncController<RequestViewModel[])

System.MissingMethodException: 'Cannot dynamically create an instance of type 'RequestViewModel[]'. Reason: Type is not supported.'

Done via IList<T>, should use IList<RequestViewModel> instead of arrays.