NerdDinner example problem, help needed
Hello, I'm trying to create a DinnersController, but when I debug the code, i get an error:
NerdDinnerEntites could not be found.
Can anyone please tell me where I'm going wrong? Below is my controller.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace NerdDinner.Controllers
{
public class DinnersController : Controller
{
//
// GET: /Dinners/
public ActionResult Index()
{
return View();
}
}
}
|