Posts by Paulo Féra • 134 points
4 posts
-
1
votes1
answer27
viewsQ: Stop process in case of failure or invalid data
I am developing an elixir API and I have a certain process that performs 6 chain actions. My question is how to interrupt this execution each of these 6 actions has a problem. I would not like to…
elixirasked Paulo Féra 134 -
0
votes2
answers305
viewsA: Best way to recover data for a Datagridview?
The way you did is not wrong. As a suggestion, in your CNAES entity you could create a property called userName that returns the name and surname public usuarioNome { get { if (usuario == null)…
-
4
votes1
answer140
viewsA: Dynamically use LINQ aggregator
See if this solution meets your need: public static double AgreggateDynamic<T>(IEnumerable<T> list, string propertyName, string func) { Func<T, double> expression = x =>…
-
0
votes3
answers2753
viewsA: Solution to scan documents by browser
I already needed to do this and the only way I could find was by creating an activex component and installing it in the browser. Due to the complexity my client gave up this process and we opted for…