Posts by Abraão Honório • 59 points
5 posts
-
0
votes2
answers70
viewsA: Choose path index
You need to specify the page in the Razor view engine that is in the Startup.Cs file, configure the Configuraeservices method this way and it should work:…
-
0
votes1
answer245
viewsA: .net core json files
The JSON mapping posted is correct with a caveat that has a @class remove that @ and something else is the "," at the end of the file. Another thing you’re sure that type Price should really be int?…
-
1
votes1
answer98
viewsA: Problem with accentuated character in the return of the query
To solve this question I had to make changes in the bank. Observation: The change in encoding in the database, table and columns. As can be seen in the code below ALTER DATABASE `banco` CHARACTER…
-
0
votes1
answer98
viewsQ: Problem with accentuated character in the return of the query
I have a Mysql database with encoding defined as latin1_swedish_ci. I’m using Dapper to connect the database. When I make a query to certain tables, the characters that are accented comes as follows…
-
1
votes1
answer416
viewsA: Pointer to pointer array
The answer to your question is yes, when you did double **p you have created a variable which is pointer of a pointer of double. When accessing the value of P, use *p[índice]. #include…