Nullable Integer instead of int in Room

Viewed 1269

I can't find any information about nullable integers in Room.

Can I use Integer instead of int when I define my entities in Gooogle Room?

1 Answers

I tested and see that we able use Integer to save null integer to database using Room

Related