Hi
I have an Entity class where it contains nullable columns and as per documentation
https://developer.android.com/reference/androidx/room/Update I can create a class with select columns and use @Update(entity = Playlist.class) to update them, but I have a different situation,
I am getting values from api and some may come null, so I need to update only those which are coming non null from api
Any way to use if non null then update in query ?