Im using Linq to SQL I have a stored procedure that is returning xml . ie im using for xml outo ,elements
that works fine. what I want to do is expose the result of the stored procedure via a webservice.
Here is some pseudo code: if some could help me replace the ?'s
[WebMethod]
public ? myMethod( int custID)
{
var myCust = db.getCustomer(custID) ;
return ?
}