Guest User

Untitled

a guest
Jul 21st, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. .....
  2. ActionsJournal actionsJournalEntry =
  3. TestFactory.CreateActionEntry(.....);
  4.  
  5. if (/* some condition */)
  6. {
  7. actionsJournalEntry.CreatedDate = DateTime.Now.AddDay(30); // else it will be null
  8. }
  9.  
  10. ent.ActionsJournals.AddObject(actionsJournalEntry);
  11.  
  12. ent.SaveChanges();
  13. ....
  14.  
  15. public partial class ActionsJournal
  16. {
  17. public class ActionsJournal() {
  18. CreatedDate = DateTime.Now.AddDay(30);
  19. }
  20. }
Add Comment
Please, Sign In to add comment