Why can the Linq to SQL designer not understand the following stored procedure and import it correctly?
CREATE PROCEDURE dbo.MartinTest
@parameter1 INTEGER
AS
SET NOCOUNT ON
SELECT C1, C2, C3
INTO #myTempTable
FROM MyTable
SELECT C1, C2, C3
FROM MyOtherTable INNER JOIN #myTempTable ON ....
RETURN
When I use the designer to import this stored procedure, it sets the return type as "none", even though the SP clearly returns one or more rows of data.
Whereas, if I remove the first select statement and instead simply return the content of the original table...
CREATE PROCEDURE dbo.MartinTest
@parameter1 INTEGER
AS
SET NOCOUNT ON
SELECT C1, C2, C3
FROM MyTable
RETURN
...the designer works fine and determines the correct return type.
BTW: I know I can manually code the call to the stored procedure so I am not looking for a work-around, I am more interested as to whether this is a bug in the designer for Linq to SQL or whether it is something else. I am using VS2008 SP1.
Thanks.