8,494
社区成员




public class Student
{
[Key]
public int Id { get; set; }
public string Name { get; set; }
public StudentAddress studentAddress { get; set; }
}
public partial class StudentAddress
{
[Key, ForeignKey("Student")]
public int Studentid { get; set; }
public string City { get; set; }
public string Zipcode { get; set; }
public string Country { get; set; }
public Student Student { get; set; }
}