Snapshot functionality or getting sqlite3* connection handle from SQLiteConnection

Snapshot functionality or getting sqlite3* connection handle from SQLiteConnection

I need the snapshot functionality offered by SQLite as described here: https://www.sqlite.org/c3ref/snapshot_get.html
but in context of a SQLiteConnection in turn used with Enity Framework 6.

As far as I can see dotConnect for SQLite does not support or offer access to snapshots - did I miss something here?

Alternatively I could handle the snapshots using the sqlite C API, but then I need the connection handle. Again I didn't find any way to get the underlying sqlite3* (as IntPtr) from a SQLiteConnection.

How can I get the connection handle from a SQLiteConnection?
If this is not (yet) supported, even a solution using reflection would be ok for now.