11

I have Razor woking with Nancy, but can't figure out how to make the view see the model.

I am rending the model with this code (where t is the model instance).

  return View[ "views/addshortcut.cshtml", t ];

How can I make the Razor see t?

4

1 に答える 1

21

モデルがあります。使い始めてください。インテリセンスについて話している場合は、かみそりで@inheritステートメントを使用できます。

@inherits Nancy.ViewEngines.Razor.NancyRazorViewBase<YourNameSpace.YourModel>
于 2012-04-05T18:34:15.897 に答える