Posts by user21727 • 5 points
6 posts
-
0
votes1
answer59
viewsA: Problems updating related objects using Entity Framework and Asp net core 3
In front-end you keep the list of child objects updated plus the list of children already saved in the bank ( ie, the child objects obtained from the bank will have a non-null id or id greater than…
-
-2
votes1
answer51
viewsA: Savechanges() method returns the added record id
var idGravado = await _fornecedorRepository.Adicionar(dados); As pointed out by you, according to the microsoft documentation:…
-
-1
votes1
answer59
viewsA: Is CQRS login in Command or Query?
Hello, in my view CQRS is relevant when you, within the same delimited context, have input flows or obtain data, being interesting to use an Handler for each use case of your business (business). As…
-
0
votes1
answer249
viewsA: Consume Web-Service via WCF with digital certificate
403 Code - By the way you are not allowed to consume the Webservice or your certificate has expired or something similar.
-
-1
votes2
answers4752
viewsA: Run a precedent from a Java application
Another way to have the same result is by using the class SimpleJdbcCall: SimpleJdbcCall call = new SimpleJdbcCall(new…
-
1
votes1
answer23
viewsQ: Do you display texts in the APP by strings?
I am creating an APP to list the bus lines and when clicking on a line, will open the information of the schedules of the same line. I wonder if you have how to put these Strings directly in the…