SqliteWasmHelper
SqliteWasmHelper copied to clipboard
Persistent SQLite in Blazor WebAssembly apps with EF Core 6.0 and your browser's cache.
this is part of my base entity: ``` public abstract class EntityBase { [Key, DatabaseGenerated(DatabaseGeneratedOption.Identity)] public int Id { get; set; } ``` still I need to set a unique...
Microsoft.EntityFramework 8 introduces significant enhancements for client-side database context usage, including: 1- Exception-free SQLite migrations: EF Core 8 seamlessly rebuilds tables during migrations if required, eliminating the need for manual...
**Describe the bug** I'm not exactly sure if this is considered a bug, but SqliteWasmHelper my app to crash due to high memory usage. I have an app that functions...
**Describe the bug** The latest NuGet version does not include the ability to manually restore a database, even though the feature was merged in. See here: https://github.com/JeremyLikness/SqliteWasmHelper/pull/26#issuecomment-1767004023 I confirmed this...
First of all I have to say that I am very impressed with the idea and the implementation. This is by far one the most favorite libraries in my work....
This closes #32 Note the code is leveraging multi targeting in order to support ef core 6, 7 and 8 at the same time. I've also ran automated tests.
`Microsoft.EntityFrameworkCore` has done a lot to improve the performance and download size from ef core 6.0 to 8.0 But if I enable the migrations, I'll receive an error. I'm using...
**Is your feature request related to a problem? Please describe.** A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] **Describe the solution you'd...
Hi Jeremy... I watched your video with Sebastian and DotMimSync. Pretty cool. I'm working on an app now that could make use of both SqliteWasmHelper AND DotMimSync (with sync over...
Jeremy! you did a great job. Thank you. It has been a week that I am searching in internet and your version of storing SQLite inside browser is by far...