select section expert then click x+2 add bellow code
if PageNumber <> 1 then
true
else
false
martes, 3 de septiembre de 2013
viernes, 3 de mayo de 2013
Group By y Sum con linq
var ListaInfoLineasAgrupadas = (from l in _Factura.Lineas
group l by l.CuentaCosto into grupo
select new
{
CuentaCosto = grupo.First().CuentaCosto,
Proyecto = grupo.First().Proyecto,
ValorNeto = grupo.Sum(g => g.ValorNeto),
PesoLinea = 0
}
).ToList();
group l by l.CuentaCosto into grupo
select new
{
CuentaCosto = grupo.First().CuentaCosto,
Proyecto = grupo.First().Proyecto,
ValorNeto = grupo.Sum(g => g.ValorNeto),
PesoLinea = 0
}
).ToList();
Suscribirse a:
Entradas (Atom)