Has anyone tried using architecture components wit...
# android
v
Has anyone tried using architecture components with custom data class. Like for e.g : Movie class has following below fields :
Copy code
@SerializedName("trailer")
    private Trailer trailer;

    @Ignore
    @SerializedName("crew")
    private ArrayList<Person> crew = new ArrayList<>();
It’s becoming very complex to use Dao with such class like movie. I guess @Relation is the only solution?