Guest User

Untitled

a guest
Jul 16th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. var sortedResult= from detail in detailCollection
  2. join codeValue in codeValueCollection on detail.contribType equals codeValue.codeValue
  3. into joinedDetails
  4. from fullDetail in joinedDetails.DefaultIfEmpty()
  5. orderby detail.reportingDate, fullDetail.allocateOrder
  6. select detail;
Add Comment
Please, Sign In to add comment