How can I create an in memory sqlite database?
I'm using this:
var connectionStringBuilder = new SQLiteConnectionStringBuilder { DataSource = ":memory:" };
var connection = new SQLiteConnection(connectionStringBuilder.ToString());
try
var connection = new SQLiteConnection("Data Source=:memory:");
Maybe it's too late, but FullUri=file::memory:?cache=shared;
is working.
It's knowledge from forum question