Created
June 1, 2016 12:54
-
-
Save jfbueno/f12d7f29b970963d6b9ef513833b7054 to your computer and use it in GitHub Desktop.
Relação pro mesmo model
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Key, ForeignKey("Entity")] | |
public int EntityId { get; set; } | |
public virtual Entity Entity { get; set; } | |
[ForeignKey("Headquarter")] | |
public int HeadquarterId { get; set; } | |
public virtual Customer Headquarter { get; set; } | |
public virtual List<Customer> Branches { get; set; } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment