If I have a Model like this:
如果我有这样一个模型:
public class Search
{
public int Id { get; set; }
public string UserDefinedName { get; set; }
public SearchAge Age { get; set; }
public virtual ICollection<SearchBachelors> Bachelors { get; set; }
}
pu