Can a C# named Tuple be used as an MVC page model type?

人走茶凉 提交于 2019-12-01 04:15:05

As for current time you can't and need to use

@model Tuple<string, int>
//or
@model ValueTuple<string, int>

For the difference between the two options: What's the difference between System.ValueTuple and System.Tuple?

You can follow on GitHub: Razor throws CompilationFailedException when iterating over named Tuple (I know it is closed as a dup but name is more indicative for current case)

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!