How can we have a one-to-many relationship when the primary key of all the models named Id?
Example:
public class Organization {
public long Id { get; set; }
public List<Teacher> Teachers { get; set; }
}
public class Teacher {
public long Id { get; set; }
public long ??? { get; set; } // what do we call OrganizationId?
public Organization Organization { get; set; }
}