Group: StrataFrame Developers
Posts: 6.6K,
Visits: 7K
|
It is not actually called BO Repository and we need to adjust the help documentation. It is actually a shared data source which allows the same data source to be shared accross multiple business objects. To use this, you can set a business object's SharedDataTableKey property to something other than empty. If you have two business objects and set their SharedDataTableKey property to the same name they will use database as their internal table. To play with this, create a test form and place two business objects with the same name on the form. Set both of their SharedDatatableKey properties to the same name (may need to do this in code) and the populate one and reference the other. You will see that they both have the same data be exposed through two different instances of the BO.
|