Guest User

Untitled

a guest
Oct 16th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. Address Table
  2. ---------------------
  3. Id Street City
  4. 1 Street A City
  5.  
  6.  
  7. container = new Container {
  8. Name = "Box",
  9. Size = 10
  10. }
  11.  
  12. person = new Persion {
  13. Name = "A",
  14. AddressId = 2
  15. Container = container
  16. }
  17.  
  18. await _context.Person.AddAsync(person);
  19. await _context.SaveChangesAsync(true);
  20. return container;
Add Comment
Please, Sign In to add comment