Advertisement
Guest User

Untitled

a guest
Jan 20th, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.62 KB | None | 0 0
  1.                     partQuery = db.Participants
  2.                                     .Where(w => w.Id == term.Id)
  3.                                     .Select(s => new ReferenceSearchListItem
  4.                                     {
  5.                                         ItemId = s.Id,
  6.                                         Aka = s.Aka,
  7.                                         Name = s.Name,
  8.                                         ReferenceType = "Participant",
  9.                                         ParentItemId = null,
  10.                                         ParentItemName = null
  11.                                     });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement