Posts by Lucas Simas • 71 points
3 posts
-
0
votes2
answers607
viewsA: Error add-Migration . net core 3
Already checked your appsetting.Development.json? By default, when ASPNETCORE_ENVIRONMENT is not set in its environment variables, it uses the Development configuration. More in:…
-
2
votes1
answer142
viewsA: Angular 7: How to identify the Encounter of a File?
You can use a library to help you: https://github.com/polygonplanet/encoding.js If you want, you can use the definition types of this library, which is available at:…
-
2
votes2
answers1617
viewsA: Foreach in Javascript
The object in JS is key-value. You can use for...in, follow the documentation below //Objeto var obj = {a:1, b:2, c:3}; //Para prop (propriedade) in obj (objeto) faça for (var prop in obj) { //…