Hello I'm trying to create a simple room example a...
# room
p
Hello I'm trying to create a simple room example app but I'm facing some issues when trying to do a query, can you please take a look on this? [1], I've read about Embeded and Relation but I'm afraid because I'm using a
*.db
script to initialise the database and I don't know if it will break something. [1] : https://stackoverflow.com/questions/63382855/how-to-add-embedded-and-relation-to-room-database
r
My experience with db design is that you should build your db first without the relations, and do join selections in stead, if the db tendency to grow large (extremely large) then you could benefit the relations and foreignkeys and so on.
👍🏽 1