我试图将此代码升级到Entity Framework Core。
ObjectContext和ObjectStateEntry中的错误CS0246 C#找不到类型或名称空间名称'ObjectContext'(您是否缺少using指令或程序集引用?
...位于System.Data.Entity.Core.Objects命名空间中。
通过搜索互联网,我知道此名称空间不存在,所以现在该怎么办才能解决此错误?
我在互联网上尝试了很多 谢谢
window.addEventListener('activate', function(event) {
event.waitUntil(
caches.keys().then(function(cacheNames) {
return Promise.all(
cacheNames.filter(function(cacheName) {
// Return true if you want to remove this cache,
// but remember that caches are shared across
// the whole origin
}).map(function(cacheName) {
return caches.delete(cacheName);
})
);
})
);
});