Joel Weiss

Results 19 comments of Joel Weiss

So is there currently a way to use an existing container?

Hi @CorsairRO Can you please provide a small sample describing your problem? Thanks.

This appears to be a bug, For now you have 2 options Use `IList`, ```csharp public virtual IList OrderDetails { get; set; } ``` Or add [DoNoTrack] ```csharp [DoNoTrack] public...

Sure thing, [Licence](https://github.com/joelweiss/ChangeTracking/blob/master/License.md) permits it.

BTW from [README](https://github.com/joelweiss/ChangeTracking/blob/master/README.md) > By default complex properties and collection properties will be tracked (if it can be made trackable). > > You can change the default by setting >...

This was already discussed in #4. Thanks for the feedback, I will keep it in mine.

`ChangeTracking` internaly uses `BindingList` and as you can [see](https://www.google.com/search?q=+bindinglist+sort+datagrid) `BindingList` does not support sorting. this fails to sort as well ```csharp //var data = GetData(); // This sorts but isn't...

Short version is `ObservableCollection` only provides change notification on the list it self, `BindingList` has a lot more of the stuff needed to make `ChangeTracking` work. That being said I...

@toumir **`ObservableCollection`** can not be supported as it is a class, only interfaces can be swapped out for a trackable collection.

I will work on it as soon as I have a chance