Skip to content

Instantly share code, notes, and snippets.

@debugmodedotnet
Created August 28, 2015 05:17
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 debugmodedotnet/beeb6f2fe3babb18726d to your computer and use it in GitHub Desktop.
Save debugmodedotnet/beeb6f2fe3babb18726d to your computer and use it in GitHub Desktop.
public class StudentAddress
{
public int Id { get; set; }
public string Address { get; set;}
public int StudentId { get; set; }
public virtual Student Student { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment