SqliteDbSetExtension<T> extension

(the bridge): a DbSet<T>.asQueryable extension. Returns a Queryable<T> wired to the attached SqliteQueryProvider.

Most users don't need this directly — the DbSetLinqExtension below exposes the LINQ surface on DbSet<T> itself. asQueryable is kept for advanced cases (e.g. when the user wants to use a Queryable-specific method that's not on the extension).

Throws UnsupportedError when no SqliteQueryProvider is attached.

on

Methods

asQueryable() Queryable<T>

Available on DbSet<T>, provided by the SqliteDbSetExtension extension