views:

173

answers:

1

I've got two main sprocs that I'd like to link up to two separate object data sources.

I generate my DAL in a separate project, and simply import the DLL into my current project.

The problem is that I'm unable to see any of my DAL objects in the business object dropdown list, and none show up when I select Show Only Data Components.

I am however, able to retreive data in my code behind ie:

SubSonic.StoredProcedure sp = SPs.SpGetAllUserReceipts(UserID);

And iterate through a IDataReader.

... so any suggestions please?

Thank you.

A: 

I have the same problem.

stream
great... good to see we're the only ones! Any help on this would still be appreciated. I simply went with the code-behind solutions, but using object data sources would be nice, so I don't have to write out all that CRUD code for my grids!
ElHaix