Skip to content

Instantly share code, notes, and snippets.

@ryancfogarty
Created September 9, 2025 15:25
Show Gist options
  • Select an option

  • Save ryancfogarty/374d57c864c82e3e7d8ab382d5518448 to your computer and use it in GitHub Desktop.

Select an option

Save ryancfogarty/374d57c864c82e3e7d8ab382d5518448 to your computer and use it in GitHub Desktop.
DB Flow
@Dao
interface EventDao {
@Query("SELECT count(*) FROM EventEntity")
fun getCountAsFlow(): Flow<Int>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment