This question is locked. New answers and comments are not allowed.
I have generated a Domain Method based on an SP on my server that returns a complex type. I have generated the web service using the Telerik wizard. Inside of my Context class on the server I see the stub for the function call.
How would I call this from the silverlight side? As the complex resultset Global.AspireWeb.TestSPResultSet0
does not appear to be exposed to the client, I'm just confused how to properly make the call from the client to grab and parse what is being returned in queryResult.
Thanks,
Brent
Public Function TestSP() As IEnumerable(Of Global.AspireWeb.TestSPResultSet0) Implements IMyContextUnitOfWork.TestSP Dim queryResult As IEnumerable(Of Global.AspireWeb.TestSPResultSet0)= Me.ExecuteQuery(Of Global.AspireWeb.TestSPResultSet0)("[TestSP]", CommandType.StoredProcedure) Return queryResultEnd FunctionHow would I call this from the silverlight side? As the complex resultset Global.AspireWeb.TestSPResultSet0
does not appear to be exposed to the client, I'm just confused how to properly make the call from the client to grab and parse what is being returned in queryResult.
Thanks,
Brent