cshtml でキーとカウント データを表示するにはどうすればよいですか
これはクラスです:
public class ViewModelData
{
public int Key { get; set; }
public int Count { get; set; }
}
これはコントローラーです:
public ActionResult Trigger()
{
var result = repository.Paths.GroupBy(x => x.SmokeCar)
.Select(x => new ViewModelData
{
Key = x.Key,
Count = x.Count()
}).ToList();
return View(result);
}
これはcshtmlです
@model IEnumerable CessationPath.Domain.Entities.ViewModelData
<div>
<span>Count:</span>
</div>