Bindable LINQ: Dependencies

Update: SyncLINQ has been released under the name Bindable LINQ, and is available from CodePlex
My last SyncLINQ commit introduces a working implementation of dependencies. Put simply, you can write normal looking LINQ queries like this:
listBox.ItemsSource = from c in contacts.AsBindable()
[…]