├── .gitignore ├── LICENSE ├── README.md ├── _config.yml ├── logo.png ├── logo.svg └── src └── Blazor.IndexedDB.Framework ├── Blazor.IndexedDB.Framework.Example ├── App.razor ├── Blazor.IndexedDB.Framework.Example.csproj ├── Models │ ├── ExampleDb.cs │ └── Person.cs ├── Pages │ ├── Index.razor │ └── _Imports.razor ├── Program.cs ├── Shared │ └── MainLayout.razor ├── Startup.cs ├── _Imports.razor └── wwwroot │ └── index.html ├── Blazor.IndexedDB.Framework.sln └── Blazor.IndexedDB.Framework ├── Attributes ├── AutoIncrementAttribute.cs └── UniqueAttribute.cs ├── Blazor.IndexedDB.Framework.csproj ├── EntityState.cs ├── Extensions ├── IndexedSetExtensions.cs └── TaskExtensions.cs ├── IIndexedDbFactory.cs ├── IndexedDb.cs ├── IndexedDbFactory.cs ├── IndexedEntity.cs └── IndexedSet.cs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reshiru/Blazor.IndexedDB.Framework/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reshiru/Blazor.IndexedDB.Framework/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reshiru/Blazor.IndexedDB.Framework/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reshiru/Blazor.IndexedDB.Framework/HEAD/_config.yml -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reshiru/Blazor.IndexedDB.Framework/HEAD/logo.png -------------------------------------------------------------------------------- /logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reshiru/Blazor.IndexedDB.Framework/HEAD/logo.svg -------------------------------------------------------------------------------- /src/Blazor.IndexedDB.Framework/Blazor.IndexedDB.Framework.Example/App.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reshiru/Blazor.IndexedDB.Framework/HEAD/src/Blazor.IndexedDB.Framework/Blazor.IndexedDB.Framework.Example/App.razor -------------------------------------------------------------------------------- /src/Blazor.IndexedDB.Framework/Blazor.IndexedDB.Framework.Example/Blazor.IndexedDB.Framework.Example.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reshiru/Blazor.IndexedDB.Framework/HEAD/src/Blazor.IndexedDB.Framework/Blazor.IndexedDB.Framework.Example/Blazor.IndexedDB.Framework.Example.csproj -------------------------------------------------------------------------------- /src/Blazor.IndexedDB.Framework/Blazor.IndexedDB.Framework.Example/Models/ExampleDb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reshiru/Blazor.IndexedDB.Framework/HEAD/src/Blazor.IndexedDB.Framework/Blazor.IndexedDB.Framework.Example/Models/ExampleDb.cs -------------------------------------------------------------------------------- /src/Blazor.IndexedDB.Framework/Blazor.IndexedDB.Framework.Example/Models/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reshiru/Blazor.IndexedDB.Framework/HEAD/src/Blazor.IndexedDB.Framework/Blazor.IndexedDB.Framework.Example/Models/Person.cs -------------------------------------------------------------------------------- /src/Blazor.IndexedDB.Framework/Blazor.IndexedDB.Framework.Example/Pages/Index.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reshiru/Blazor.IndexedDB.Framework/HEAD/src/Blazor.IndexedDB.Framework/Blazor.IndexedDB.Framework.Example/Pages/Index.razor -------------------------------------------------------------------------------- /src/Blazor.IndexedDB.Framework/Blazor.IndexedDB.Framework.Example/Pages/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reshiru/Blazor.IndexedDB.Framework/HEAD/src/Blazor.IndexedDB.Framework/Blazor.IndexedDB.Framework.Example/Pages/_Imports.razor -------------------------------------------------------------------------------- /src/Blazor.IndexedDB.Framework/Blazor.IndexedDB.Framework.Example/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reshiru/Blazor.IndexedDB.Framework/HEAD/src/Blazor.IndexedDB.Framework/Blazor.IndexedDB.Framework.Example/Program.cs -------------------------------------------------------------------------------- /src/Blazor.IndexedDB.Framework/Blazor.IndexedDB.Framework.Example/Shared/MainLayout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reshiru/Blazor.IndexedDB.Framework/HEAD/src/Blazor.IndexedDB.Framework/Blazor.IndexedDB.Framework.Example/Shared/MainLayout.razor -------------------------------------------------------------------------------- /src/Blazor.IndexedDB.Framework/Blazor.IndexedDB.Framework.Example/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reshiru/Blazor.IndexedDB.Framework/HEAD/src/Blazor.IndexedDB.Framework/Blazor.IndexedDB.Framework.Example/Startup.cs -------------------------------------------------------------------------------- /src/Blazor.IndexedDB.Framework/Blazor.IndexedDB.Framework.Example/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reshiru/Blazor.IndexedDB.Framework/HEAD/src/Blazor.IndexedDB.Framework/Blazor.IndexedDB.Framework.Example/_Imports.razor -------------------------------------------------------------------------------- /src/Blazor.IndexedDB.Framework/Blazor.IndexedDB.Framework.Example/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reshiru/Blazor.IndexedDB.Framework/HEAD/src/Blazor.IndexedDB.Framework/Blazor.IndexedDB.Framework.Example/wwwroot/index.html -------------------------------------------------------------------------------- /src/Blazor.IndexedDB.Framework/Blazor.IndexedDB.Framework.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reshiru/Blazor.IndexedDB.Framework/HEAD/src/Blazor.IndexedDB.Framework/Blazor.IndexedDB.Framework.sln -------------------------------------------------------------------------------- /src/Blazor.IndexedDB.Framework/Blazor.IndexedDB.Framework/Attributes/AutoIncrementAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reshiru/Blazor.IndexedDB.Framework/HEAD/src/Blazor.IndexedDB.Framework/Blazor.IndexedDB.Framework/Attributes/AutoIncrementAttribute.cs -------------------------------------------------------------------------------- /src/Blazor.IndexedDB.Framework/Blazor.IndexedDB.Framework/Attributes/UniqueAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reshiru/Blazor.IndexedDB.Framework/HEAD/src/Blazor.IndexedDB.Framework/Blazor.IndexedDB.Framework/Attributes/UniqueAttribute.cs -------------------------------------------------------------------------------- /src/Blazor.IndexedDB.Framework/Blazor.IndexedDB.Framework/Blazor.IndexedDB.Framework.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reshiru/Blazor.IndexedDB.Framework/HEAD/src/Blazor.IndexedDB.Framework/Blazor.IndexedDB.Framework/Blazor.IndexedDB.Framework.csproj -------------------------------------------------------------------------------- /src/Blazor.IndexedDB.Framework/Blazor.IndexedDB.Framework/EntityState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reshiru/Blazor.IndexedDB.Framework/HEAD/src/Blazor.IndexedDB.Framework/Blazor.IndexedDB.Framework/EntityState.cs -------------------------------------------------------------------------------- /src/Blazor.IndexedDB.Framework/Blazor.IndexedDB.Framework/Extensions/IndexedSetExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reshiru/Blazor.IndexedDB.Framework/HEAD/src/Blazor.IndexedDB.Framework/Blazor.IndexedDB.Framework/Extensions/IndexedSetExtensions.cs -------------------------------------------------------------------------------- /src/Blazor.IndexedDB.Framework/Blazor.IndexedDB.Framework/Extensions/TaskExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reshiru/Blazor.IndexedDB.Framework/HEAD/src/Blazor.IndexedDB.Framework/Blazor.IndexedDB.Framework/Extensions/TaskExtensions.cs -------------------------------------------------------------------------------- /src/Blazor.IndexedDB.Framework/Blazor.IndexedDB.Framework/IIndexedDbFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reshiru/Blazor.IndexedDB.Framework/HEAD/src/Blazor.IndexedDB.Framework/Blazor.IndexedDB.Framework/IIndexedDbFactory.cs -------------------------------------------------------------------------------- /src/Blazor.IndexedDB.Framework/Blazor.IndexedDB.Framework/IndexedDb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reshiru/Blazor.IndexedDB.Framework/HEAD/src/Blazor.IndexedDB.Framework/Blazor.IndexedDB.Framework/IndexedDb.cs -------------------------------------------------------------------------------- /src/Blazor.IndexedDB.Framework/Blazor.IndexedDB.Framework/IndexedDbFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reshiru/Blazor.IndexedDB.Framework/HEAD/src/Blazor.IndexedDB.Framework/Blazor.IndexedDB.Framework/IndexedDbFactory.cs -------------------------------------------------------------------------------- /src/Blazor.IndexedDB.Framework/Blazor.IndexedDB.Framework/IndexedEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reshiru/Blazor.IndexedDB.Framework/HEAD/src/Blazor.IndexedDB.Framework/Blazor.IndexedDB.Framework/IndexedEntity.cs -------------------------------------------------------------------------------- /src/Blazor.IndexedDB.Framework/Blazor.IndexedDB.Framework/IndexedSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reshiru/Blazor.IndexedDB.Framework/HEAD/src/Blazor.IndexedDB.Framework/Blazor.IndexedDB.Framework/IndexedSet.cs --------------------------------------------------------------------------------