Hi
I have created a collection of business objects in a seperate dll, which I
have then added to my web project. However it does not show up in list of
Website Data Sources.
I need to Data Source to be able to design my Report (MS Reporting)
I have added a ObjectDataSourc e to a page
<asp:ObjectData Source ID="ObjectDataS ource3" runat="server"
SelectMethod="G etWinners"
TypeName="GolfS tore.Bll.MensSe ction.PinCollec tion">
<SelectParamete rs>
<asp:Paramete r Name="EventId" Type="Int32" />
</SelectParameter s>
</asp:ObjectDataS ource>
and calls a stored proc in the database via the GetWinners method - it works
- I've checked it using the SQL Profiler.
What do I have to do to make my collection show up in the Website Data
Source list.
Comment