I have an object like that
var users = [new User(),new User()];
Where inside I have another object like that
var location = new Location();
Then on my View I would bind my users array and when I bind the Location object I wouldn't type "Location.MyProperty1", "Location.MyProperty2" foreach bind but I would type just "MyProperty1", "MyProperty2"
it's not a bug, it's just a question. Can I do a binding like that using knockout?