关于[IndexedDB in Blazor]的摘要:
Almost all rich client-side web apps (SPAs) involve interacting with a data store. Normally, that data store is held on some server, and the browser-based app queries it by making HTTP calls to some API endpoint. Another option, though, is to store a database client-side in the browser. The great benefit of doing so is that it permits completely instant querying, and can even work offline.
原文地址: http://blog.stevensanderson.com/2019/08/03/blazor-indexeddb/