Sto creando un alimento di classe Entity (Room Persistence lib), dove voglio fare foodId
come autoincremento.
@Entity
class Food(var foodName: String, var foodDesc: String, var protein: Double, var carbs: Double, var fat: Double)
{
@PrimaryKey
var foodId: Int = 0
var calories: Double = 0.toDouble()
}
Come posso impostare foodId
un campo di incremento automatico?
0.toDouble()
usare puoi0.0
dichiararlo come doppio