deal with a list of objects in an object in c# entity framework? couldn't find a working solution
code:
public class Doctor : Member
{
public string Profession { get; set; }
public int AvailableDays { get; set; }
public int DailyPatientsLimit { get; set; }
public List<PList> PatientsList { get; set; }
}
Try ICollection
Обсуждают сегодня