Posts by andrecarlucci • 591 points
5 posts
-
1
votes1
answer82
viewsA: Map Api port to MVC project
Try pointing the browser to /api/[name of your controller, without the suffix controller]/[name of your method or action] This is standard mapping. If you can post your Startup.Cs class and the…
-
1
votes4
answers4389
viewsA: Select from previous months
Very simple using DATEFROMPARTS: In the WHERE: Parte esquerda: we are transforming the current date on the first day of the month and unpacking it the "@par" number of times. Parte direita: turning…
-
0
votes1
answer372
viewsA: Run a task at a given time
I believe that running the CRON every minute (or the minimum multiple of minutes your scheduling allows) is not going to be a problem, since the job will only check and only perform the task…
-
33
votes2
answers1065
viewsA: What problem do Microservices solve?
I’ve had a good experience with Microservices, come on: Perks: Team division: When your system grows and the development team also ends up coming the need to break a large team into smaller teams to…
-
3
votes1
answer2405
viewsA: Login failure for user "NT IUSR AUTHORITY"
Go to the IIS Application Pool that runs your application and change the user to "Networkservice". Application Pools -> Right click on chosen -> Advanced Settings -> Identity From there in…