ポイント 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; }
}
ユーザーがこのマトリックスにデータを入力できるようにするビューが必要です。どうすればこれを達成できますか?わかりません。
ありがとう。