我需要为从 A 点到 B 点所需的天数建立某种矩阵。
这应该是这样的:
每个起点/终点都存储在一个表中(名为 Stop):
public class Stop
{
[Key]
public int StopID { get; set; }
public string StopCode { get; set; }
}
矩阵的数据应该存储在另一个表中:
public class Matrix
{
[Key]
public int MatrixID { get; set; }
public int OriginStopID { get; set; }
public int DestinationStopID { get; set; }
public int NumberOfDays { get; set; }
}
我需要一个视图来允许用户在这个矩阵中输入数据。我怎样才能做到这一点?我没有任何想法。
谢谢。