Guest User

Untitled

a guest
May 24th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. var model = (from p in pedidosFundilag
  2. join n in numPartes on p.NumParte equals n.NumParte
  3. into pn from n in pn.DefaultIfEmpty()
  4. select new PedidoFundilagNumParteDTO { Cliente = p.Cliente, Division = p.Division, NumParte = p.NumParte, CodigoFundilag = n.CodigoFundilag, NoXHuacal = n.NoXHuacal, Cantidad = p.Cantidad, FechaSolicitud = p.FechaSolicitud, FechaEnvio = p.FechaEnvio, OrdenCompra = p.OrdenCompra, NumConfirmacion = p.NumConfirmacion, NumEmbarque = p.NumEmbarque, Fecha = p.Fecha, NumControl = p.NumControl })
  5. .ToList();
Add Comment
Please, Sign In to add comment