Skip to content

Instantly share code, notes, and snippets.

@dsibinski
Created May 18, 2017 20:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dsibinski/33dc1a774b183f4706174a3a656318b9 to your computer and use it in GitHub Desktop.
Save dsibinski/33dc1a774b183f4706174a3a656318b9 to your computer and use it in GitHub Desktop.
public class PersonEvent
{
[ForeignKey(typeof(Person))]
public int PersonId { get; set; }
[ForeignKey(typeof(Event))]
public int EventId { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment