Group: StrataFrame Developers
Posts: 3K,
Visits: 2.5K
|
The problem is in the AddRequiredDataSourceItem() line. The first parameter is the DataSourceKey for the data source your requiring. It's basically a unique key for the connection string that will be created at runtime. That value must match the DataSourceKey property on each business object that will use that connection string. So, the business objects' DataSourceKey property defaults to an empty string (""), so either, you need to change that first parameter to an empty string, or you need to change the DataSourceKey property on your business objects to be "ISOCOM Key".
|