Let's say I have an observableArray in my viewModel called movies that contains data similar to this...
[{
Id: 12345,
Title: 'Movie1',
Year: 2010,,
UserMovies: [{
Id: 8
IsWatched: false,
Rating: 3.5,
UserId: 'e1e9c075-1ded-4e7d-8d30-d5d1fbd47103'
}]
},{
Id: 12345,
Title: 'Movie2',
Year: 2010,,
UserMovies: [{
Id: 11
IsWatched: false,
Rating: 4,
UserId: 'e1e9c075-1ded-4e7d-8d30-d5d1fbd47103'
}]
}]
I know I can use the mapping plugin and every property will become an observable but what if I only want to make one property observable. Is it possible to make just UserMovies an observableArray, and how would I go about doing that?