我foreach
循環,我需要循環到自己寫入一個文本文件,在這樣的形式:foreach循環通過列表的txt
[
{
"Platillo": "Pozole",
"PDV": "Restaurante",
"Turno": "matutino",
"PV": "$45.00",
"1": "1",
"2": "1"
},]
我的foreach循環的時刻填補了HTML表格。
foreach (var item in Model)
{
var total = 0;
decimal costo = 0;
for (int i = 1; i <= 31; i++)
{
var value = 0;
if (item.Fecha.Day == i) { value = item.Cantidad; costo = costo + item.Total; }
total += value;
}
<tr>
<td class="descripcion">@item.Descripcion</td>
<td class="pdv">@item.Pdv</td>
<td class="pdv">@item.Rid</td>
<td>@((costo/(total + 1)).ToString("C"))</td>
@for (int i = 1; i <= 31; i++)
{
var value = 0;
int month = item.Fecha.Month;
if (item.Fecha.Day == i) { value = item.Cantidad; }
}
<td>@total</td>
<td>@(((costo/(total + 1)) * total).ToString("C"))</td>
如何做到這一點在列,而做到這一點對我foreach
聲明中每一個項目?
如果有匹配的JSON的對象,然後只序列化這些對象的名單? – crashmstr
@crashmstr我做了一個編輯,以一種相當意想不到的方式消除了變化,我正在嘗試恢復它。對困惑感到抱歉。 – jdphenix
我可以序列化列表,但我做了一些代碼,我的數據在我的foreach語句從該集合,爲什麼我正在尋找一種方式來獲得我的foreach結果到一個txt評價者的列表與純數據 –