Posts by Luiz Eugênio Barbieri • 11 points
4 posts
-
0
votes1
answer1132
viewsA: API Rest ASP.Net Core 3.1 returning 404 error when published
I solved the problem. I circled the login service with Try catch and started returning the stacktrace. With this I noticed that the error was in the connection string, because I had not informed the…
-
0
votes1
answer52
viewsA: How to sort a list 1 to N with Expression lambda
I understand your need. But do you need this to be done specifically in a lambda expression? Can’t you use LINQ? If you can, here’s an example: List<Objeto> retAux = new List<Objeto>();…
-
0
votes1
answer1132
viewsQ: API Rest ASP.Net Core 3.1 returning 404 error when published
I’m doing some testing with Apis in ASP.Net Core 3.1. In this case, I am using Entity Framework to access the database and Identity Core to register and log in users. To do so, I have implemented…
-
1
votes0
answers134
viewsQ: XML deserialization in C# is returning null array even when XML has data
I’m trying to deserialize XML <?xml version="1.0" encoding="UTF-8"?> <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"…