我有一个简单的asp.net mvc项目应该在app数据文件夹上创建一个数据库,但是我收到了以下错误
{“基础提供程序在打开时失败。”} {“无法附加文件 'F:\ GoogleDriveSync \ products_WB0R5L90S \ MVC5_Full_VersionCapatech \ Inspinia_MVC5 \ App_Data文件\ TokenCacheDataContext.mdf' 作为数据库'TokenCacheDataContext'。
代码基于这个github项目 https://github.com/andrewconnell/azadaspnetmvcauth
我的代码如下: EfAdalTokenCache
public class EfAdalTokenCache : TokenCache
{
private TokenCacheDataContext db = new TokenCacheDataContext();
string User;
private PerUserWebCache Cache;
// constructor
public EfAdalTokenCache(string user)
{
// associate the cache to the current user of the web app
User = user;
this.AfterAccess = AfterAccessNotification;
this.BeforeAccess = BeforeAccessNotification;
this.BeforeWrite = BeforeWriteNotification;
// look up the entry in the DB
Cache = db.PerUserCacheList.FirstOrDefault(c => c.WebUserUniqueId == User);
// place the entry in memory
this.Deserialize((Cache == null) ? null : Cache.CacheBits);
}
// clean up the DB
public override void Clear()
{
base.Clear();
foreach (var cacheEntry in db.PerUserCacheList)
db.PerUserCacheList.Remove(cacheEntry);
db.SaveChanges();
}
// Notification raised before ADAL accesses the cache.
// This is your chance to update the in-memory copy from the DB, if the in-memory version is stale
void BeforeAccessNotification(TokenCacheNotificationArgs args)
{
if (Cache == null)
{
// first time access
Cache = db.PerUserCacheList.FirstOrDefault(c => c.WebUserUniqueId == User);
}
else
{ // retrieve last write from the DB
var status = from e in db.PerUserCacheList
where (e.WebUserUniqueId == User)
select new
{
LastWrite = e.LastWrite
};
// if the in-memory copy is older than the persistent copy
if (status.First().LastWrite > Cache.LastWrite)
//// read from from storage, update in-memory copy
{
Cache = db.PerUserCacheList.FirstOrDefault(c => c.WebUserUniqueId == User);
}
}
this.Deserialize((Cache == null) ? null : Cache.CacheBits);
}
// Notification raised after ADAL accessed the cache.
// If the HasStateChanged flag is set, ADAL changed the content of the cache
void AfterAccessNotification(TokenCacheNotificationArgs args)
{
// if state changed
if (this.HasStateChanged)
{
Cache = new PerUserWebCache
{
WebUserUniqueId = User,
CacheBits = this.Serialize(),
LastWrite = DateTime.Now
};
//// update the DB and the lastwrite
db.Entry(Cache).State = Cache.EntryId == 0 ? EntityState.Added : EntityState.Modified;
db.SaveChanges();
this.HasStateChanged = false;
}
}
void BeforeWriteNotification(TokenCacheNotificationArgs args)
{
// if you want to ensure that no concurrent write take place, use this notification to place a lock on the entry
}
}
错误在
上面抛出Cache = db.PerUserCacheList.FirstOrDefault(c => c.WebUserUniqueId == User);
Global.asax中
protected void Application_Start()
{
AreaRegistration.RegisterAllAreas();
FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
RouteConfig.RegisterRoutes(RouteTable.Routes);
BundleConfig.RegisterBundles(BundleTable.Bundles);
Database.SetInitializer(new TokenCacheInitializer());
}
TokenCacheInitializer
public class TokenCacheInitializer : System.Data.Entity.DropCreateDatabaseIfModelChanges<TokenCacheDataContext>
{
}
TokenCacheDataContext
public class TokenCacheDataContext : DbContext
{
public TokenCacheDataContext()
: base("TokenCacheDataContext")
{ }
public DbSet<PerUserWebCache> PerUserCacheList { get; set; }
protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
modelBuilder.Conventions.Remove<PluralizingTableNameConvention>();
}
}
Model PerUserWebCache
public class PerUserWebCache
{
[Key]
public int EntryId { get; set; }
public string WebUserUniqueId { get; set; }
public byte[] CacheBits { get; set; }
public DateTime LastWrite { get; set; }
}
答案 0 :(得分:2)
请检查此link
另请检查您的连接字符串。
打开Visual Studio的#34;开发人员命令提示符&#34;在您的开始/程序菜单下,您需要管理员优先权。运行以下命令:
sqllocaldb.exe stop v11.0
sqllocaldb.exe delete v11.0
之后,启动MVC应用程序