Following this question here :
Using the checked binding in knockout with a list of checkboxes checks all the checkboxes
I\'ve c
I know it is a late answer but it was useful to me! Just to complete, using the $.grep function you can emulate the linq where().
Linq:
var maleNames = people
.Where(p => p.Sex == "M")
.Select(p => p.Name)
Javascript:
// replace where with $.grep
// select with $.map
var maleNames = $.grep(people, function (p) { return p.Sex == 'M'; })
.map(function (p) { return p.Name; });