Posts by Nícolas Tarzia • 78 points
5 posts
-
0
votes3
answers271
viewsA: I can’t do addiction injection
In the Startup.Cs file you need to also add Iusuariorepository in dependency injection, your file would look like this: public void ConfigureServices(IServiceCollection services) {…
-
2
votes2
answers419
viewsA: Export graphs from an Excel spreadsheet without Interop
You can generate graphics using Epplus, see an example: //Criar o relatório var pieChart = (ExcelPieChart)ws.Drawings.AddChart("crtExtensionsSize", eChartType.PieExploded3D); pieChart.SetPosition(1,…
-
1
votes1
answer406
viewsA: .NET Core + Visual Studio Code - Structure organization
I believe I can answer all your questions with an example, but I can tell you that Voce will use the command line instead of performing all operations as it is in Visual Studio. See some commands:…
-
1
votes1
answer144
viewsA: Output Cache ASP . Net MVC
Most of the time the Any cache will meet the expectation, as it performs the Local/Proxy/Server cache. If you have an Ecommerce and it has a category page, where the user will select which category…
-
1
votes2
answers709
viewsA: How can I execute a function that is in another form?
You need to have your own variable form instantiated in the location you are calling the method UpdateProgress(). Your form is already active? Otherwise, you will have to instantiate the variable…