Skip to content

Instantly share code, notes, and snippets.

@dsibinski
Created December 20, 2021 02:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dsibinski/da58a09912762d72601f923104f51cdc to your computer and use it in GitHub Desktop.
Save dsibinski/da58a09912762d72601f923104f51cdc to your computer and use it in GitHub Desktop.
public class SQLiteInMemoryConnectionProvider : DriverConnectionProvider
{
private AsyncLocal<DbConnection> _connection = new AsyncLocal<DbConnection>();
public override DbConnection? GetConnection()
{
return _connection.Value ??= base.GetConnection();
}
public override void CloseConnection(DbConnection conn) { }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment