Querable and BindingSource item add .net
- by Alexander
Hello!
I wrote my own simple Querable provider whick retrieves data from database.
Now I need to bind this data to BindingSource and when new item added to BindingSource some event or method must be called for handling add operation.
I have tried to implement IBingingList on a List class which is returned when query is completed, but AddNew method is not called when item added.
How to implement this scenario?