如何创建返回表的存储过程?
我正在使用实体框架。我在 SQL Server 中创建一个函数,并将其导入到实体框架中。
在实体框架中,我无法导入函数,只能导入存储过程。
我在网上读到存储过程可以返回值。在这种情况下,我需要返回一个表。有可能做到吗?
示例:
ALTER PROCEDURE [dbo].[X]
AS
BEGIN
SELECT ...
END
GO
提前致谢。
I'm using Entity Framework. I create a function in SQL Server where I'll import to Entity Framework.
In Entity Framework I can't import functions, only stored procedures.
I was reading in the web that a stored procedure can returns values. In this case, I need to return a table. Is it possible to do it?
Example:
ALTER PROCEDURE [dbo].[X]
AS
BEGIN
SELECT ...
END
GO
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需在存储过程中添加一条 SELECT 语句即可。这是存储过程“返回”表的唯一方法。
Just put a SELECT statement in your stored procedure. That's the only way that a stored procedure can "return" a table.