Guest User

Untitled

a guest
Jan 19th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. foreach (var r in result)
  2. {
  3. var newdoc = new UserMailingList
  4. {
  5. UserId = new Guid(r.rcid),
  6. MailingListId = listid,
  7. StatusId = 0,
  8. IsDeleted = false,
  9. Timestamp = DateTime.UtcNow
  10. };
  11. batch.Add(newdoc);
  12. batchsize++;
  13. if (batchsize == 99999)
  14. {
  15. collection.insertmany(batch)
  16. batchsize = 0;
  17. batch.Clear();
  18. }
  19. }
Add Comment
Please, Sign In to add comment