Group: StrataFrame Developers
Posts: 3K,
Visits: 2.5K
|
You could place the business object within a BusinessBindingSource, which will return separate instances of the business object, each positioned to the appropriate record (the BBS acts like an IBindingListView, which is itself an IList, so you can use it like a collection). This would allow you to access the business object without worrying about the record changing each time you access a different object. The added benefit is that changes to these objects can still be propagated back to the database.
|