Есть моделька:
public class Works
{
public int Id { get; set; }
public string name { get; set; }
public string laboriusness { get; set;}
[DataType(DataType.Date)]
[DisplayFormat(DataFormatString = "{0:dd'/'MM'/'yyyy}", ApplyFormatInEditMode = true)]
public DateTime completiondate { get; set; }
}
public class Employyes
{
public int Id { get; set;}
public string nameofemployye { get; set; }
}
public class Orders
{
public int Id { get; set; }
public int workid { get; set; }
public int employyeid { get; set; }
public string laboriusness { get; set; }
[DataType(DataType.Date)]
[DisplayFormat(DataFormatString = "{0:dd'/'MM'/'yyyy}", ApplyFormatInEditMode = true)]
public DateTime startdate { get; set; }
[DataType(DataType.Date)]
[DisplayFormat(DataFormatString = "{0:dd'/'MM'/'yyyy}", ApplyFormatInEditMode = true)]
public DateTime enddate { get; set; }
[DataType(DataType.Date)]
[DisplayFormat(DataFormatString = "{0:dd'/'MM'/'yyyy}", ApplyFormatInEditMode = true)]
public DateTime realenddate { get; set; }
}
Я хочу, чтобы поля workid и employyeid из класса Orders, заполнялись из полей ID классов works и employyes, наподобие, как работает datapicker, как это сделать?