I'm binding to a method using an ObjectDataProvider. The class which exposes this method contains an ObservableCollection of type T:INofifyChanged. My problem is that because the methods return value is dependent upon the value of it's ObservableCollection, i need the binding to be updated when the ObservableCollection changes in any way.
In short, the return value of the method is dependent on other factors and i want this method binding to refresh when it's dependencies change.
How can i let the bound control know when the methods return value will be different?