У меня есть следующие 3 модели для связанных таблиц базы данных. Я могу отобразить их в одном представлении с 3 таблицами, имеющими входные данные для каждой записи;Я могу создать объект JS со всеми записями и могу отправить в контроллер;Как мне обновить записи в базе данных? Обратите внимание, что я могу обрабатывать основные, подробные данные в контроллере, но в этом случае у меня есть основные, основные и подробные данные с несколькими строками ...
public partial class LocLocations1//Masters of Masters
{
public LocLocations1()
{
LocLocations2 = new HashSet<LocLocations2>();
}
public int LocID { get; set; }
public string LocName { get; set; }
public Boolean Activated { get; set; }
public Boolean AdminLock { get; set; }
public virtual ICollection<LocLocations2> LocLocations2 { get; set; }
}
public partial class LocLocations2//Masters
{
public LocLocations2()
{
LocLocations3 = new HashSet<LocLocations3>();
}
public int LocID { get; set; }
public int MasterLocID { get; set; }
public string LocName { get; set; }
public short? Activated { get; set; }
public short? AdminLock { get; set; }
public virtual LocLocations1 LocLocations1 { get; set; }
public virtual ICollection<LocLocations3> LocLocations3 { get; set; }
}
public partial class LocLocations3//Details
{
public int LocID { get; set; }
public int MasterLocID { get; set; }
public string LocName { get; set; }
public short? Activated { get; set; }
public short? AdminLock { get; set; }
public virtual LocLocations2 LocLocations2 { get; set; }
}