Advertisement
Guest User

Untitled

a guest
Oct 28th, 2016
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. IEnumerable<Final> fidn = (repository.users
  2. .Join(repository.usersLG,
  3. post => post.pcod ,
  4. meta => meta.pcod,
  5. (post, meta) => new { Post = post, Meta = meta })
  6. .Where(postAndMeta => postAndMeta.Post.fam_v == "Johny ").ToList())
  7. .Select(x => new Final { mcod= x.Post.mcod ,pcod = x.Post.pcod ,
  8. c_ogrn = x.Post.c_ogrn , fam_v = x.Post.fam_v , im_v = x.Post.im_v ,
  9. ot_v = x.Post.ot_v ,idGK = x.Meta.idGK });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement