Posts by Edson José Martins • 45 points
11 posts
-
0
votes3
answers360
viewsA: Return View using View Data ASP . NET MVC
This error occurred because the Idpessoa field is null. To solve this problem: 1) Make a Model bind with the Idpessoa field: <input type="number" value="3" value="@Model.IdPessoa" id="IdPessoa"…
-
1
votes2
answers75
viewsA: Sonar: Validate changes from a given date
In your build you need to add 3 steps: 1) Prepare Analysis Configure which Sonarqube project will upload the information. In this step we have to Configure Endpoint, Project key, Project Name and…
-
0
votes4
answers2106
viewsA: Value treatment null c#
Evaluating the code may be error in the case of the variable "return" = null. An example to treat this situation is to use ? before ".". Example: string idProduct = Convert.Tostring(return?.…
-
0
votes2
answers22
viewsA: Capture "Save work item" event at TFS - Visual Studio 2015
1) Install the "TFS Office Integration Installer": https://go.microsoft.com/fwlink/? Linkid=626605 2) In excel you can connect to a TFS query:…
-
0
votes2
answers166
viewsA: Query return comparison with "N" status
Check if there is one missing "=" on the stretch below: if (arcerarDt.Rows[0][2].ToString() **==** 'N')
-
-1
votes1
answer83
viewsA: How to list items per month in SQL Server
Try grouping the data from your select: SELECT YEAR(DataReferencia) ,MONTH(DataReferencia) ,count(*) from Tabela GROUP BY MONTH(DataReferencia) ,year(DataReferencia)…
-
-1
votes4
answers7214
viewsA: Difference between epics and Features
Epics and Features are Work Item Types. You must use them to break the work in order to see the evolution of a project. For more information, read the official Azure Devops documentation link:…
-
0
votes1
answer36
viewsA: Aspnet Core - Failed to display date in form
Good night, Put your code in GIT so we can help more easily. One thing I noticed looking at the code snippet you posted is that in the View it has an empty "Catch": Remove this Try / catch and see…
-
1
votes2
answers71
viewsA: Is Checkout function supported in Visual Studio Team Services?
Good night, In Azure Devops we have two types of repositories: Azure Repos Git (Default) Team Foundation Version Control (TFVC) To enable TFVC, you must perform the following steps: After this…
-
1
votes1
answer30
viewsA: Build VSTS with error (Missing an Assembly Reference)
Good night, Follow below a few steps: 1) Check in *.csproj that the reference does not have a fixed directory on your machine; 2) Check if you are recovering the Nugget packages in your build; If…
c#answered Edson José Martins 45 -
1
votes2
answers91
viewsA: Testing Plans in VSTS
Good night, Access "Test Plans" > "Test Plans Menu option: After this click on the option "New Test Plan":…