如何将此代码从Entity Framework 6.1升级到Entity Framework Core?

时间:2019-07-11 07:53:29

标签: c# entity-framework-core

我试图将此代码升级到Entity Framework Core。

  

错误CS0246 C#找不到类型或名称空间名称'ObjectContext'(您是否缺少using指令或程序集引用?

ObjectContext和ObjectStateEntry中的

...位于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);
                  })
              );
          })
      );
    });

0 个答案:

没有答案