Posts by Guilherme Kuhnen • 95 points
4 posts
-
1
votes0
answers50
viewsQ: Paged selectlist in Angular2
I have the following HTML code for the list: <select data-placeholder="Origem" id="origemNew" (click)="SelecionaOrigem($event,oportunidadeNew.operacao,true)" class="chosen-select col-md-12">…
-
0
votes1
answer496
viewsQ: Check for list records in the Entity framework
I have the following code: var ret = Monitoramento.List .Include(p => p.CD) .ThenInclude(p => p.CargaEntrega) .ThenInclude(p => p.CargaEntrega.Motorista) .ThenInclude(p =>…
-
4
votes2
answers4935
viewsQ: Remove Visual Studio Code Side Panel
You can remove the side panel of Visual Studio Code?…
visual-studio-codeasked Guilherme Kuhnen 95 -
4
votes2
answers227
viewsQ: Remove "OR" condition from LINQ query
I have the following method: bool naoUsarNomeCliente = String.IsNullOrWhiteSpace(filtro.NomeCliente); long codigoExterno; bool naoUsarCodigoExterno = !long.TryParse(filtro.CodigoExterno, out…