SqliteWasmHelper icon indicating copy to clipboard operation
SqliteWasmHelper copied to clipboard

Multiple DbContexes

Open sinisteralex opened this issue 1 year ago • 0 comments

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.

sinisteralex avatar Apr 30 '23 11:04 sinisteralex