是否可以在 ASP.NET Core MVC 的视图中使用值元组作为模型类型?我的意思是这样的:
控制器:
public IActionResult Index()
{
...
(int ImportsCount, int ExportsCount) importsExports = (imports.Count, exports.Count);
return View(importsExports);
}
看法:
@model (int ImportsCount, int ExportsCount)
但是,使用此设置,在呈现页面时会引发异常。我正在使用安装了 System.ValueTuple NuGet 包的 .NET 4.6.2。