Do we really need BindingSource to bind to controls? I.e. what problems does it solve?
Do you use the BindingSource, or do you use an alternative method?
Do we really need BindingSource to bind to controls? I.e. what problems does it solve?
Do you use the BindingSource, or do you use an alternative method?
Copyright © 2021 Jogjafile Inc.
Yes, you need it regardless of your underlying data source. The primary raison-d'être of BindingSource is to avoid memory leaks that can occur when subscribing directly to change notification events on data objects. As long as you're using the default Windows Forms binding mechanism, you'll need BindingSource.