我正在尝试使用实体框架代码创建一个简单的数据库,但是当我运行我的项目时,我在线上获取异常,我从数据库中检索列表:
例外:
发生与网络相关或特定于实例的错误 建立与SQL Server的连接。找不到服务器或 无法访问。验证实例名称是否正确 SQL Server配置为允许远程连接。 (提供者:SQL 网络接口,错误:50 - 发生本地数据库运行时错误。 指定的LocalDB实例不存在。
代码:
public ActionResult Index()
{
using(var db=new OdeToFooddb())
{
var model = (from r in db.Restaurants select r).ToList();
return View(model);
}
}
型号:
public class Restaurant
{
public int Id { get; set; }
public string Name { get; set; }
public string City { get; set; }
public string Country { get; set; }
public ICollection<RestaurantReview> Reviews { get; set; }
}