├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── build.yml │ ├── documentation.yml │ ├── nuget.yml │ └── tests.yml ├── .gitignore ├── BlazorWasmExample ├── App.razor ├── BlazorWasmExample.csproj ├── Data │ ├── Thing.cs │ └── ThingContext.cs ├── Pages │ └── Index.razor ├── Program.cs ├── Properties │ └── launchSettings.json ├── Shared │ ├── MainLayout.razor │ ├── MainLayout.razor.css │ ├── NavMenu.razor │ └── NavMenu.razor.css ├── _Imports.razor └── wwwroot │ ├── css │ ├── app.css │ ├── bootstrap │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ └── open-iconic │ │ ├── FONT-LICENSE │ │ ├── ICON-LICENSE │ │ ├── README.md │ │ └── font │ │ ├── css │ │ └── open-iconic-bootstrap.min.css │ │ └── fonts │ │ ├── open-iconic.eot │ │ ├── open-iconic.otf │ │ ├── open-iconic.svg │ │ ├── open-iconic.ttf │ │ └── open-iconic.woff │ ├── favicon.ico │ ├── icon-192.png │ └── index.html ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── ReleaseNotes.md ├── SqliteWasmHelper.sln ├── SqliteWasmHelper ├── .editorconfig ├── BackupLink.razor ├── BrowserCache.cs ├── Extensions.cs ├── IBrowserCache.cs ├── IMigration.cs ├── ISqliteSwap.cs ├── ISqliteWasmDbContextFactory.cs ├── Migration.cs ├── SqliteSwap.cs ├── SqliteWasmDbContextFactory.cs ├── SqliteWasmHelper.csproj ├── _Imports.razor ├── docs │ ├── SqliteWasmHelper.md │ └── SqliteWasmHelper │ │ ├── BackupLink.md │ │ ├── BackupLink │ │ ├── BackupLink.md │ │ ├── BuildRenderTree.md │ │ ├── DbContextType.md │ │ ├── OnInitializedAsync.md │ │ └── RefreshAsync.md │ │ ├── BrowserCache.md │ │ ├── BrowserCache │ │ ├── BrowserCache.md │ │ ├── DisposeAsync.md │ │ ├── GenerateDownloadLinkAsync.md │ │ └── SyncDbWithCacheAsync.md │ │ ├── Extensions.md │ │ ├── Extensions │ │ └── AddSqliteWasmDbContextFactory.md │ │ ├── IBrowserCache.md │ │ ├── IBrowserCache │ │ ├── GenerateDownloadLinkAsync.md │ │ └── SyncDbWithCacheAsync.md │ │ ├── ISqliteSwap.md │ │ ├── ISqliteSwap │ │ └── DoSwap.md │ │ ├── ISqliteWasmDbContextFactory-1.md │ │ ├── ISqliteWasmDbContextFactory-1 │ │ └── CreateDbContextAsync.md │ │ ├── SqliteSwap.md │ │ ├── SqliteSwap │ │ ├── DoSwap.md │ │ └── SqliteSwap.md │ │ ├── SqliteWasmDbContextFactory-1.md │ │ ├── SqliteWasmDbContextFactory-1 │ │ ├── CreateDbContextAsync.md │ │ ├── GetFilenameForType.md │ │ ├── Reset.md │ │ └── SqliteWasmDbContextFactory.md │ │ ├── _Imports.md │ │ └── _Imports │ │ ├── BuildRenderTree.md │ │ └── _Imports.md ├── stylecop.json └── wwwroot │ └── browserCache.js ├── SqliteWasmTests ├── BrowserCacheTests.cs ├── ExtensionsTests.cs ├── FactoryTests.cs ├── SqliteSwapTests.cs ├── SqliteWasmTests.csproj └── TestHelpers │ ├── DelayedTrigger.cs │ ├── MockBrowserCache.cs │ ├── MockJsModule.cs │ ├── MockJsRuntime.cs │ ├── MockMigration.cs │ ├── MockSwap.cs │ ├── TestContext.cs │ ├── TestServiceCollection.cs │ └── TestThing.cs ├── XmlDocGen ├── Program.cs ├── README.md └── XmlDocGen.csproj └── version.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/.github/workflows/documentation.yml -------------------------------------------------------------------------------- /.github/workflows/nuget.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/.github/workflows/nuget.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/.gitignore -------------------------------------------------------------------------------- /BlazorWasmExample/App.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/BlazorWasmExample/App.razor -------------------------------------------------------------------------------- /BlazorWasmExample/BlazorWasmExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/BlazorWasmExample/BlazorWasmExample.csproj -------------------------------------------------------------------------------- /BlazorWasmExample/Data/Thing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/BlazorWasmExample/Data/Thing.cs -------------------------------------------------------------------------------- /BlazorWasmExample/Data/ThingContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/BlazorWasmExample/Data/ThingContext.cs -------------------------------------------------------------------------------- /BlazorWasmExample/Pages/Index.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/BlazorWasmExample/Pages/Index.razor -------------------------------------------------------------------------------- /BlazorWasmExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/BlazorWasmExample/Program.cs -------------------------------------------------------------------------------- /BlazorWasmExample/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/BlazorWasmExample/Properties/launchSettings.json -------------------------------------------------------------------------------- /BlazorWasmExample/Shared/MainLayout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/BlazorWasmExample/Shared/MainLayout.razor -------------------------------------------------------------------------------- /BlazorWasmExample/Shared/MainLayout.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/BlazorWasmExample/Shared/MainLayout.razor.css -------------------------------------------------------------------------------- /BlazorWasmExample/Shared/NavMenu.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/BlazorWasmExample/Shared/NavMenu.razor -------------------------------------------------------------------------------- /BlazorWasmExample/Shared/NavMenu.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/BlazorWasmExample/Shared/NavMenu.razor.css -------------------------------------------------------------------------------- /BlazorWasmExample/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/BlazorWasmExample/_Imports.razor -------------------------------------------------------------------------------- /BlazorWasmExample/wwwroot/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/BlazorWasmExample/wwwroot/css/app.css -------------------------------------------------------------------------------- /BlazorWasmExample/wwwroot/css/bootstrap/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/BlazorWasmExample/wwwroot/css/bootstrap/bootstrap.min.css -------------------------------------------------------------------------------- /BlazorWasmExample/wwwroot/css/bootstrap/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/BlazorWasmExample/wwwroot/css/bootstrap/bootstrap.min.css.map -------------------------------------------------------------------------------- /BlazorWasmExample/wwwroot/css/open-iconic/FONT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/BlazorWasmExample/wwwroot/css/open-iconic/FONT-LICENSE -------------------------------------------------------------------------------- /BlazorWasmExample/wwwroot/css/open-iconic/ICON-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/BlazorWasmExample/wwwroot/css/open-iconic/ICON-LICENSE -------------------------------------------------------------------------------- /BlazorWasmExample/wwwroot/css/open-iconic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/BlazorWasmExample/wwwroot/css/open-iconic/README.md -------------------------------------------------------------------------------- /BlazorWasmExample/wwwroot/css/open-iconic/font/css/open-iconic-bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/BlazorWasmExample/wwwroot/css/open-iconic/font/css/open-iconic-bootstrap.min.css -------------------------------------------------------------------------------- /BlazorWasmExample/wwwroot/css/open-iconic/font/fonts/open-iconic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/BlazorWasmExample/wwwroot/css/open-iconic/font/fonts/open-iconic.eot -------------------------------------------------------------------------------- /BlazorWasmExample/wwwroot/css/open-iconic/font/fonts/open-iconic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/BlazorWasmExample/wwwroot/css/open-iconic/font/fonts/open-iconic.otf -------------------------------------------------------------------------------- /BlazorWasmExample/wwwroot/css/open-iconic/font/fonts/open-iconic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/BlazorWasmExample/wwwroot/css/open-iconic/font/fonts/open-iconic.svg -------------------------------------------------------------------------------- /BlazorWasmExample/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/BlazorWasmExample/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf -------------------------------------------------------------------------------- /BlazorWasmExample/wwwroot/css/open-iconic/font/fonts/open-iconic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/BlazorWasmExample/wwwroot/css/open-iconic/font/fonts/open-iconic.woff -------------------------------------------------------------------------------- /BlazorWasmExample/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/BlazorWasmExample/wwwroot/favicon.ico -------------------------------------------------------------------------------- /BlazorWasmExample/wwwroot/icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/BlazorWasmExample/wwwroot/icon-192.png -------------------------------------------------------------------------------- /BlazorWasmExample/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/BlazorWasmExample/wwwroot/index.html -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/README.md -------------------------------------------------------------------------------- /ReleaseNotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/ReleaseNotes.md -------------------------------------------------------------------------------- /SqliteWasmHelper.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/SqliteWasmHelper.sln -------------------------------------------------------------------------------- /SqliteWasmHelper/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/SqliteWasmHelper/.editorconfig -------------------------------------------------------------------------------- /SqliteWasmHelper/BackupLink.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/SqliteWasmHelper/BackupLink.razor -------------------------------------------------------------------------------- /SqliteWasmHelper/BrowserCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/SqliteWasmHelper/BrowserCache.cs -------------------------------------------------------------------------------- /SqliteWasmHelper/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/SqliteWasmHelper/Extensions.cs -------------------------------------------------------------------------------- /SqliteWasmHelper/IBrowserCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/SqliteWasmHelper/IBrowserCache.cs -------------------------------------------------------------------------------- /SqliteWasmHelper/IMigration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/SqliteWasmHelper/IMigration.cs -------------------------------------------------------------------------------- /SqliteWasmHelper/ISqliteSwap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/SqliteWasmHelper/ISqliteSwap.cs -------------------------------------------------------------------------------- /SqliteWasmHelper/ISqliteWasmDbContextFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/SqliteWasmHelper/ISqliteWasmDbContextFactory.cs -------------------------------------------------------------------------------- /SqliteWasmHelper/Migration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/SqliteWasmHelper/Migration.cs -------------------------------------------------------------------------------- /SqliteWasmHelper/SqliteSwap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/SqliteWasmHelper/SqliteSwap.cs -------------------------------------------------------------------------------- /SqliteWasmHelper/SqliteWasmDbContextFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/SqliteWasmHelper/SqliteWasmDbContextFactory.cs -------------------------------------------------------------------------------- /SqliteWasmHelper/SqliteWasmHelper.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/SqliteWasmHelper/SqliteWasmHelper.csproj -------------------------------------------------------------------------------- /SqliteWasmHelper/_Imports.razor: -------------------------------------------------------------------------------- 1 | @using Microsoft.AspNetCore.Components.Web 2 | -------------------------------------------------------------------------------- /SqliteWasmHelper/docs/SqliteWasmHelper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/SqliteWasmHelper/docs/SqliteWasmHelper.md -------------------------------------------------------------------------------- /SqliteWasmHelper/docs/SqliteWasmHelper/BackupLink.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/SqliteWasmHelper/docs/SqliteWasmHelper/BackupLink.md -------------------------------------------------------------------------------- /SqliteWasmHelper/docs/SqliteWasmHelper/BackupLink/BackupLink.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/SqliteWasmHelper/docs/SqliteWasmHelper/BackupLink/BackupLink.md -------------------------------------------------------------------------------- /SqliteWasmHelper/docs/SqliteWasmHelper/BackupLink/BuildRenderTree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/SqliteWasmHelper/docs/SqliteWasmHelper/BackupLink/BuildRenderTree.md -------------------------------------------------------------------------------- /SqliteWasmHelper/docs/SqliteWasmHelper/BackupLink/DbContextType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/SqliteWasmHelper/docs/SqliteWasmHelper/BackupLink/DbContextType.md -------------------------------------------------------------------------------- /SqliteWasmHelper/docs/SqliteWasmHelper/BackupLink/OnInitializedAsync.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/SqliteWasmHelper/docs/SqliteWasmHelper/BackupLink/OnInitializedAsync.md -------------------------------------------------------------------------------- /SqliteWasmHelper/docs/SqliteWasmHelper/BackupLink/RefreshAsync.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/SqliteWasmHelper/docs/SqliteWasmHelper/BackupLink/RefreshAsync.md -------------------------------------------------------------------------------- /SqliteWasmHelper/docs/SqliteWasmHelper/BrowserCache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/SqliteWasmHelper/docs/SqliteWasmHelper/BrowserCache.md -------------------------------------------------------------------------------- /SqliteWasmHelper/docs/SqliteWasmHelper/BrowserCache/BrowserCache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/SqliteWasmHelper/docs/SqliteWasmHelper/BrowserCache/BrowserCache.md -------------------------------------------------------------------------------- /SqliteWasmHelper/docs/SqliteWasmHelper/BrowserCache/DisposeAsync.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/SqliteWasmHelper/docs/SqliteWasmHelper/BrowserCache/DisposeAsync.md -------------------------------------------------------------------------------- /SqliteWasmHelper/docs/SqliteWasmHelper/BrowserCache/GenerateDownloadLinkAsync.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/SqliteWasmHelper/docs/SqliteWasmHelper/BrowserCache/GenerateDownloadLinkAsync.md -------------------------------------------------------------------------------- /SqliteWasmHelper/docs/SqliteWasmHelper/BrowserCache/SyncDbWithCacheAsync.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/SqliteWasmHelper/docs/SqliteWasmHelper/BrowserCache/SyncDbWithCacheAsync.md -------------------------------------------------------------------------------- /SqliteWasmHelper/docs/SqliteWasmHelper/Extensions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/SqliteWasmHelper/docs/SqliteWasmHelper/Extensions.md -------------------------------------------------------------------------------- /SqliteWasmHelper/docs/SqliteWasmHelper/Extensions/AddSqliteWasmDbContextFactory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/SqliteWasmHelper/docs/SqliteWasmHelper/Extensions/AddSqliteWasmDbContextFactory.md -------------------------------------------------------------------------------- /SqliteWasmHelper/docs/SqliteWasmHelper/IBrowserCache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/SqliteWasmHelper/docs/SqliteWasmHelper/IBrowserCache.md -------------------------------------------------------------------------------- /SqliteWasmHelper/docs/SqliteWasmHelper/IBrowserCache/GenerateDownloadLinkAsync.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/SqliteWasmHelper/docs/SqliteWasmHelper/IBrowserCache/GenerateDownloadLinkAsync.md -------------------------------------------------------------------------------- /SqliteWasmHelper/docs/SqliteWasmHelper/IBrowserCache/SyncDbWithCacheAsync.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/SqliteWasmHelper/docs/SqliteWasmHelper/IBrowserCache/SyncDbWithCacheAsync.md -------------------------------------------------------------------------------- /SqliteWasmHelper/docs/SqliteWasmHelper/ISqliteSwap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/SqliteWasmHelper/docs/SqliteWasmHelper/ISqliteSwap.md -------------------------------------------------------------------------------- /SqliteWasmHelper/docs/SqliteWasmHelper/ISqliteSwap/DoSwap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/SqliteWasmHelper/docs/SqliteWasmHelper/ISqliteSwap/DoSwap.md -------------------------------------------------------------------------------- /SqliteWasmHelper/docs/SqliteWasmHelper/ISqliteWasmDbContextFactory-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/SqliteWasmHelper/docs/SqliteWasmHelper/ISqliteWasmDbContextFactory-1.md -------------------------------------------------------------------------------- /SqliteWasmHelper/docs/SqliteWasmHelper/ISqliteWasmDbContextFactory-1/CreateDbContextAsync.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/SqliteWasmHelper/docs/SqliteWasmHelper/ISqliteWasmDbContextFactory-1/CreateDbContextAsync.md -------------------------------------------------------------------------------- /SqliteWasmHelper/docs/SqliteWasmHelper/SqliteSwap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/SqliteWasmHelper/docs/SqliteWasmHelper/SqliteSwap.md -------------------------------------------------------------------------------- /SqliteWasmHelper/docs/SqliteWasmHelper/SqliteSwap/DoSwap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/SqliteWasmHelper/docs/SqliteWasmHelper/SqliteSwap/DoSwap.md -------------------------------------------------------------------------------- /SqliteWasmHelper/docs/SqliteWasmHelper/SqliteSwap/SqliteSwap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/SqliteWasmHelper/docs/SqliteWasmHelper/SqliteSwap/SqliteSwap.md -------------------------------------------------------------------------------- /SqliteWasmHelper/docs/SqliteWasmHelper/SqliteWasmDbContextFactory-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/SqliteWasmHelper/docs/SqliteWasmHelper/SqliteWasmDbContextFactory-1.md -------------------------------------------------------------------------------- /SqliteWasmHelper/docs/SqliteWasmHelper/SqliteWasmDbContextFactory-1/CreateDbContextAsync.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/SqliteWasmHelper/docs/SqliteWasmHelper/SqliteWasmDbContextFactory-1/CreateDbContextAsync.md -------------------------------------------------------------------------------- /SqliteWasmHelper/docs/SqliteWasmHelper/SqliteWasmDbContextFactory-1/GetFilenameForType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/SqliteWasmHelper/docs/SqliteWasmHelper/SqliteWasmDbContextFactory-1/GetFilenameForType.md -------------------------------------------------------------------------------- /SqliteWasmHelper/docs/SqliteWasmHelper/SqliteWasmDbContextFactory-1/Reset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/SqliteWasmHelper/docs/SqliteWasmHelper/SqliteWasmDbContextFactory-1/Reset.md -------------------------------------------------------------------------------- /SqliteWasmHelper/docs/SqliteWasmHelper/SqliteWasmDbContextFactory-1/SqliteWasmDbContextFactory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/SqliteWasmHelper/docs/SqliteWasmHelper/SqliteWasmDbContextFactory-1/SqliteWasmDbContextFactory.md -------------------------------------------------------------------------------- /SqliteWasmHelper/docs/SqliteWasmHelper/_Imports.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/SqliteWasmHelper/docs/SqliteWasmHelper/_Imports.md -------------------------------------------------------------------------------- /SqliteWasmHelper/docs/SqliteWasmHelper/_Imports/BuildRenderTree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/SqliteWasmHelper/docs/SqliteWasmHelper/_Imports/BuildRenderTree.md -------------------------------------------------------------------------------- /SqliteWasmHelper/docs/SqliteWasmHelper/_Imports/_Imports.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/SqliteWasmHelper/docs/SqliteWasmHelper/_Imports/_Imports.md -------------------------------------------------------------------------------- /SqliteWasmHelper/stylecop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/SqliteWasmHelper/stylecop.json -------------------------------------------------------------------------------- /SqliteWasmHelper/wwwroot/browserCache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/SqliteWasmHelper/wwwroot/browserCache.js -------------------------------------------------------------------------------- /SqliteWasmTests/BrowserCacheTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/SqliteWasmTests/BrowserCacheTests.cs -------------------------------------------------------------------------------- /SqliteWasmTests/ExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/SqliteWasmTests/ExtensionsTests.cs -------------------------------------------------------------------------------- /SqliteWasmTests/FactoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/SqliteWasmTests/FactoryTests.cs -------------------------------------------------------------------------------- /SqliteWasmTests/SqliteSwapTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/SqliteWasmTests/SqliteSwapTests.cs -------------------------------------------------------------------------------- /SqliteWasmTests/SqliteWasmTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/SqliteWasmTests/SqliteWasmTests.csproj -------------------------------------------------------------------------------- /SqliteWasmTests/TestHelpers/DelayedTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/SqliteWasmTests/TestHelpers/DelayedTrigger.cs -------------------------------------------------------------------------------- /SqliteWasmTests/TestHelpers/MockBrowserCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/SqliteWasmTests/TestHelpers/MockBrowserCache.cs -------------------------------------------------------------------------------- /SqliteWasmTests/TestHelpers/MockJsModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/SqliteWasmTests/TestHelpers/MockJsModule.cs -------------------------------------------------------------------------------- /SqliteWasmTests/TestHelpers/MockJsRuntime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/SqliteWasmTests/TestHelpers/MockJsRuntime.cs -------------------------------------------------------------------------------- /SqliteWasmTests/TestHelpers/MockMigration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/SqliteWasmTests/TestHelpers/MockMigration.cs -------------------------------------------------------------------------------- /SqliteWasmTests/TestHelpers/MockSwap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/SqliteWasmTests/TestHelpers/MockSwap.cs -------------------------------------------------------------------------------- /SqliteWasmTests/TestHelpers/TestContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/SqliteWasmTests/TestHelpers/TestContext.cs -------------------------------------------------------------------------------- /SqliteWasmTests/TestHelpers/TestServiceCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/SqliteWasmTests/TestHelpers/TestServiceCollection.cs -------------------------------------------------------------------------------- /SqliteWasmTests/TestHelpers/TestThing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/SqliteWasmTests/TestHelpers/TestThing.cs -------------------------------------------------------------------------------- /XmlDocGen/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/XmlDocGen/Program.cs -------------------------------------------------------------------------------- /XmlDocGen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/XmlDocGen/README.md -------------------------------------------------------------------------------- /XmlDocGen/XmlDocGen.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/XmlDocGen/XmlDocGen.csproj -------------------------------------------------------------------------------- /version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyLikness/SqliteWasmHelper/HEAD/version.json --------------------------------------------------------------------------------