The return types for the following stored procedures could not be detected

后端 未结 15 2184
小鲜肉
小鲜肉 2020-12-09 08:09

While drag-drop a stored procedure in dbml file I get this error:

Unknown Return Type
The return types for the following stored

15条回答
  •  生来不讨喜
    2020-12-09 08:43

    Reason: Your Stored Procedure will be returning a complex type. that is, multiple results or uses a temp table.

    Resolution

    It entirely depends on what your Stored Procedure is doing. Useful links

    1. http://odetocode.com/code/365.aspx
    2. http://riteshkk2000.blogspot.com/2010/08/error-unknown-return-type-return-types.html

提交回复
热议问题