Skip to content

Instantly share code, notes, and snippets.

@AkshayChordiya
Created October 22, 2017 09:38
Show Gist options
  • Save AkshayChordiya/35d5dda6a4727c9a93d835a2ab206015 to your computer and use it in GitHub Desktop.
Save AkshayChordiya/35d5dda6a4727c9a93d835a2ab206015 to your computer and use it in GitHub Desktop.
User entity model with composite primary key
@Entity(tableName = "users", primaryKeys = arrayOf("id", "name"))
data class User(
var id: Int = 0,
var name: String = ""
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment