We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
The @model syntax is not supported. See issue 14
If you like to have intelliSense in Visual Studio, you could use @inherits and RazorEngineTemplateBase<T>
@inherits
RazorEngineTemplateBase<T>
For example, instead of writing:
@model MyModel
write this:
@inherits RazorEngineCore.RazorEngineTemplateBase<MyModel>