目標
1 つのビュー内で 2 つのクエリを繰り返す。
問題
私のアプリケーションには、特定の製品の比較リストがあります。ページの上部には、この商品の名前、最小/最大価格、写真、その他の詳細が表示されます。
私が必要とするのは次のようなものです:
@modelComparisonList List<MyApp.Models.Products>
@modelProduct MyApp.Models.Products
@{
ViewBag.Title = "Comparing " + modelProduct.name;
}
<h1>There is @modelProduct.quantity products to compare</h1>
<table>
@foreach (var item in modelComparisonList)
{
<tr>
<p>@item.productName</p>
</tr>
<tr>
<p>@item.productPrice</p>
</tr>
<tr>
<p>@item.marketName</p>
</tr>
}
</table>
私の場合を理解できますか?
これを解決するためのソリューションを実行する方法がわかりません。誰かが私にアイデアを与えることができますか?