Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
2つの異なる日付を入力しているビューがあるので、これら2つの日付の間のデータベース内のすべてのエントリをドロップダウンリストに表示する必要があります。これどうやってするの?????
あなたのコントローラーから、これらの2つの日付の間のエントリのリストを返します
enteries.Where(a => a.startdate < FirstDate && a => a.enddate < SecondDate ).ToList()
そして、これらのエントリを DropDownListFor のように渡します
@Html.DropDownListFor(model => model.entryID, new SelectList(model.entries, "ID", "Title"))