Posts by Welber Silverio • 63 points
3 posts
-
4
votes2
answers932
viewsQ: How to pass a large list of objects to API in C#?
I am passing a list of objects to my API in C#. When the list size is smaller, everything happens as it should. When the list is a little longer the list arrives empty in my API. When the list is…
-
1
votes2
answers50
viewsA: How to send 1 object and 1 vector to a C# API with $http.post?
I managed to solve by only changing my var listProducts var listProdutos = { ListaCompraVenda: $scope.modelcompraevenda.listProdutos, ListaMeses: [$scope.dataBase.data1, $scope.dataBase.data2,…
-
1
votes2
answers50
viewsQ: How to send 1 object and 1 vector to a C# API with $http.post?
In my application I created a C#API, which is consumed by my web application in Angular. I need to pass 1 object and 1 vector as parameters to the API, but the content arrives empty in the API, how…