Link to home
Start Free TrialLog in
Avatar of caibeier
caibeier

asked on

Problem Configuring ObjectDataSource Component in ASP.NET 2.0- Business Objects selection not updated

Hi Experts,

When I try to configure the Data Source of a ObjectDataSource component in ASP.NET 2.0, The available business objects from the dropdown list are not updated ones.

In my web presentation project, there is a DLL reference comes from business logic project. I made some changes of the business logic project (added and changed some functions defined within a TableAdpater), however, when I configure ObjectDataSource in my presentation layer project, those business objects from the dropdown list is not reflecting the changes I've made in the business layer project

Right now, I can resolve this problem by removing the DLL reference from web project, then add it back again, and recompile, and then everything is fine, but I'm sure this shouldn't be the right way to go.

Any help will be greatly appreciated!!!
ASKER CERTIFIED SOLUTION
Avatar of samtran0331
samtran0331
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of caibeier
caibeier

ASKER

I've tried recompile before drop/add, unfortunately it didn't work out.
it may be an order of operations....try adding the tableadapter, creating the dataset, and then adding the object datasource and selecting the dataset from the list...good luck
Hi RainMan82,

I did follow that order to create dataset, then tableadapters for the dataset, then add functions to tableadpater to retrieve data. the problem is, when I change then functions (i.e. change function signature), then recompile, the changes are not reflected in objectdatasource configuration, until I do the remove/re-add, and compile the DLL thing.

Thanks for help!