So I went in and made a public function to execute a sqlcommand parameter. Im guessing there is a good reason you didn't include these methods as public, but Im wondering what the reprocusions of my adding a method to execute a sqlcommand from the busniness object would be.
And btw, I've been getting a lot of errors when trying to use the forum, mainly when trying to list a forum from the forum main page.
Thanks,
Robin Giltner
sorry about this....we are talking with InstantASP trying to get this resolved. Apparently there are issues with the indexes be fragmented but not allowing rebuilds to correct the issue. We will add a post once this is corrected letting you know.
Yes. You are trying to access these methods on a BO outside of the BO itself. In this case just use the data access layer versus creating some method to illogically work around the protected definition.
Robin
Yes. If you were using the Enterprise Server then your DAL would be an EnterpriseDataSourceItem instead of an SQLDataSourceItem which would properly interpret and relay all of the logic.
Thanks Trent.