Posts by Jordan Ferr • 16 points
2 posts
-
0
votes1
answer94
viewsQ: Problem when converting text to decimal in ASP.NET Core deserialization
Hello, I have an ASP.NET Core Api that takes as parameter a raw body object from the request. [HttpPost] public HttpResponseMessage DoIt([FromBody]DoItDto dto) My Doitdto class has a decimal…
-
0
votes1
answer69
viewsA: How to use SQL "in" in a lambda (Entity) C#?
If you have a list of Cpfs you can do something more or less like this: Imagine that your list of filter Cpfs is stored in the following variable: var listCpfParaFiltro = new List<string>();…