I'm wondering if there is a way to do this in bindable linq:
var LeftItems = AllItems.Where(p => !RightItems.Contains(p)));
I have tried liberal use of the AsBindable(), but it doesn't work for me..
var LeftItems = AllItems.AsBindable().Where(p => !RightItems.AsBindable.Contains(p)));
If this is not supported in BindableLINQ, is there a clever work around I'm not seeing or is there another similar package that does support it?