Data from room kotlin only appear in Launcheffects not anywhere else
Problem I am facing is that the data are inserted into table not problems but then I am not able to fetc them anywere. I tried to do print statments but only the fetch in order repositopry still retain the data ad Launch effect as well.
*This is my Dao function that creates queries ad return types and handles inserts *
@Dao
interface OrderDao {
@Insert(onConflict = OnConflictStrategy.REPLACE)
suspend fun insertOrder(order: Order)
@Insert(onConflict =...