Posts by Alipio • 23 points
3 posts
-
0
votes1
answer50
viewsQ: How to put 'Ws:' only in the first xml node of a WCF service request?
I have a WCF application that has a vehicle.svc service as in figure 1. In the vehicle service.svc has a recording method that receives a vehicle DTO as in figure 2. public class VeiculoDto { public…
-
1
votes0
answers26
viewsQ: How to implement the "Where" clause as "in" and "not in" in c# Linq?
I have the following querys: Select * from Processos where idProcesso in (1,2,3,4,5); Select * from Processos where idProcesso not in (1,2,3,4,5); Where idProcess is a column with data type int. I…
-
1
votes2
answers518
viewsQ: How to group a list of objects and after the grouping, get the list of objects that have the lowest value in c#?
I have the following structure : namespace teste { public class Produto { public string Nome { get; set; } public decimal Valor { get; set; } } public class Program { public static void…