I'm having trouble working the Grid example code using the latest MVC templates.
I have a Northwind datacontext that works in a unit test.
The directions say to make the page strongly typed by
<%@ Page Language="C#" MasterPageFile="~/Views/Shared/Site.Master"
Inherits="System.Web.Mvc.ViewPage<IEnumerable<Order>>" %>
I thought in the Razor page that would translate to
@model
IEnumerable<TelerikMvcApplication1.Models.Order>
but that results in an http 404 resource not found error. I've tried some other variations but nothing works?