Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在将 mvc4 与 razor 一起使用。我的视图中有我的视图代码,当我运行应用程序时,我使用了两个模型,它给出了如下所示的错误。
CS0135:“元组”与声明“System.Tuple”冲突
我猜在您的视图中的某个地方,您使用了带有 lambda 表达式的强类型帮助器,并使用了保留的 Model 关键字。这是一个例子:
@Html.TextBoxFor(Tuple => Tuple.SomeProperty)
像这样更改 lambda 表达式中 var 的名称:
@Html.TextBoxFor(t => t.SomeProperty)