This question is locked. New answers and comments are not allowed.
I've been trying to use Telerik's grid while using Entity 4.1 to connect to the database. Having followed the examples online I've been struggling with the problem that all of them are LINQ with no examples of Entity. The hold up at the moment seems to be the following function, again this was taken largely as a cut and paste from
[GridAction] public ActionResult _SelectAjaxEditing() { return View(new GridModel(SessionProductRepository.All())); }After the execution of this line of code it looks for a view that doesn't exist. As that is the expected behavior, I'm not seeing that to be replicated within the online examples as it simply executes.
Are there components that should be included that I have simply omitted?