How to get a specific Entity in Room
问题 So, I'm using Room database to store courses and I'm stuck on the method that returns the course with the name(course) that I want because it's always returning null. I have diminished my database to have 2 courses with the course variable as: As you can see in the picture above, when I try to get the CourseEnt in the Repository with course = fun , which I can see below that it exists, it returns a LiveData with a null value instead of the CourseEnt that I wanted. Any idea on what I'm doing