views:

60

answers:

0

Hello!

I wrote my own simple Queryable provider which retrieves data from a database. Now I need to bind this data to a BindingSource and when the new item is added to BindingSource some event or method must be called for handling the add operation.

I have tried to implement IBingingList on a List class which is returned when the query is completed, but the AddNew method is not called when the item is added?

How can I implement this scenario?