Advertisement
Guest User

Untitled

a guest
Mar 20th, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. public class A
  2. {
  3. public int Id { get; set; }
  4. public string Nome { get; set; }
  5. public ICollection<B> Bs { get; set; }
  6. }
  7.  
  8. public class B
  9. {
  10. public int Id { get; set; }
  11. public string Nome { get; set; }
  12. public int? IdA { get; set; }
  13. public virtual A A { get; set; }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement