我正在处理一个 ASP.NET MVC4 项目(学校项目,所以我正在学习框架),试图从代码优先的角度获得工作实体框架 6.0。我创建了我的模型 ( /Models/
)DbContext
等:
using System;
using System.Data.Entity;
using System.Data.Entity.ModelConfiguration.Conventions;
namespace Autokereskedes.Models
{
public class AutoDb : DbContext
{
public DbSet<Car> Cars { get; set; }
public DbSet<Reservation> Reservations { get; set; }
public DbSet<Depo> Depos { get; set; }
public DbSet<User> Users { get; set; }
protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
modelBuilder.Conventions.Remove<OneToManyCascadeDeleteConvention>();
base.OnModelCreating(modelBuilder);
}
}
}
但是当我想在我的控制器中使用它时,我得到了一个错误
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using Autokereskedes.Models;
namespace Autokereskedes.Controllers
{
public class AccountController : Controller
{
……
private bool IsUserDataValid(string email, string password)
{
bool r = false;
var crypto = new SimpleCrypto.PBKDF2();
using (var d = new AutoDb())
{
var user = new d.SystemUsers.FirstOrDefault( u => u.email == email);
if (user != null && user.Password == crypto.Compute(password))
{
r = true;
}
}
return r;
}
错误是:
Error 1 The type or namespace name 'd' could not be found (are you missing a using directive or an assembly reference?) C:\_temp\stackoverflow\Autokereskedes\Controllers\AccountController.cs 64 32 Autokereskedes
另外,我无法真正使用模型,我想我在编写表关系时犯了错误(我的表主要有一对多关联),但当我使用模型时,我得到了外键错误(HomeController)。
我的整个项目可以在这里访问:下载
感谢您的时间和帮助,我在这里很迷茫,浏览教程但仍然没有抓住重点。