Say i have the following:
说我有以下内容:
public class Person{
public int ID {get; set;}
public string Name {get; set;}
}
public class Phone{
public int ID {get; set;}
public string PhoneNumber {get; set;}
}
public Class AddEditViewModel{
public Person MyPerson{get; set;}
public List MyPhones{get; set;}
}
public c