SqliteWasmHelper
SqliteWasmHelper copied to clipboard
Multiple DbContexes
Is your feature request related to a problem? Please describe.
Adding multiple SQLite-dbs. and DbContexes does not seem to work.
Example:
builder.Services.AddSqliteWasmDbContextFactory<TodoContext>(options => options.UseSqlite("Data Source=todo.sqlite3")); builder.Services.AddSqliteWasmDbContextFactory<Map Context>(options => options.UseSqlite("Data Source=things.sqlite3"));
Describe the solution you'd like I would like to use multiple DbContexes that does not interfere with each other
Describe alternatives you've considered Using Indexed DB and plain JSON for storing data.