Queryable and BindingSource item add .net

Posted by Alexander on Stack Overflow See other posts from Stack Overflow or by Alexander
Published on 2010-03-20T05:20:05Z Indexed on 2010/03/20 5:31 UTC
Read the original article Hit count: 543

Filed under:
|

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?

© Stack Overflow or respective owner

Related posts about .NET

Related posts about databinding