Posts by Horrander Maikel • 96 points
7 posts
-
3
votes2
answers6139
viewsA: How to install . NET Core packages from Nuget using VS Code?
Another option would be to use the extension jmrog.vscode-nuget-package-manager which allows you to add packages graphically, after installing the extension and restarting vscode, you need to: Open…
-
1
votes1
answer3615
viewsQ: CORS error when requesting using Httpclient at Angular
I am trying to perform an HTTP request using "Httpclient" from Angular 4, and I get the following error: Request header field Access-Control-Allow-Origin is not allowed by…
-
2
votes1
answer119
viewsA: Instantiating the database context in the controller
Well, the only difference I see is that in the first option if the value of _db is null it will generate a new instance, adds a certain security to its implementation, but, as it was already…
-
1
votes2
answers185
viewsA: Entity Framework - rename Foreignkey
I don’t know if I understand this correctly, but I believe you are referring to the foreign key that Entity automatically creates in the database (usually: example_ID), if this is the case you can…
-
0
votes1
answer36
viewsA: ngDisable does not validate
I use the following syntax: form name + component name + property ng-disabled="!myForm.inputName.$valid" and required must be in tbm input.
angularjsanswered Horrander Maikel 96 -
0
votes1
answer47
viewsA: About the Angularjs Digest loop
Take a look at this series of video lessons of Rodrigo Branas, he explains very well how it works Video Aulas In this video he focuses on Digest Cycle and gives tips on how to improve performance…
angularjsanswered Horrander Maikel 96 -
0
votes4
answers1662
viewsA: Comparing and updating data from an HTML table with data returned via JSON?
As @Rafael B. Marcílio suggested, you can map json to a javascript object, for example using JSON.parse: var json = JSON.parse('[{ "symbol": "CTSA3.SA", "Ask": "2.07", "AverageDailyVolume":…
angularjsanswered Horrander Maikel 96