Good afternoon, could you help me, it's been a while since my Visual Studio is this way
I know that I should be with a small group to visualize the object, this is disturbing a lot, I already thank you
I have the following SQL:
select conferencia.tb_conferencia.con_codigo,
con_pedido,
count(coi_codigo) as countItens,
count(distinct cic_conferencia_item) as countItensConferidos
from conferencia.tb_conferencia
left...
I'm developing a mobile application with Xamarin. This application is a screen to authorize or not to discount above that authorized by the sellers. So I have a web service that goes in the bank and takes all the relevant information to the cl...
In git you can use the .gitignore file to ignore some file extensions, but I wonder if this can also be done in Team Foundation Service or if there is something similar to skip files with certain extensions.
I have a registration form where I have a record date field that I currently fill in my save method, except that my server is hosted in another country where the field is being filled from the location of the hosting, quite different from where...
Hello, I am creating a DataAnnotations library to extend the EntityFrameworkCore with structures that today only exist using FluentAPI. In one of them, I'm trying to recreate this block from FluentAPI:
using Microsoft.EntityFrameworkCor...
How do I make an Auto Relationship with EF Core 2.2?
I found a link that teaches how to do with EF, but in EF it does not have the WithOptional method.
public class Menu
{
public int Id { get; set; }
public string Title { get; set;...
I have a table as follows:
public class Producao
{
string unidade;
string profissional;
string procedimento;
}
I can get all the records stored in the table and throw them in a listaProducao list. And list them by fore...
In C #, this code does not compile:
public static string Teste(){
string val = "";
return val.Trim;
}
Because the Teste function requires a return of type string , and Trim is a MethodGroup . That makes per...