如何在Linq中使用输出参数?

时间:2015-12-07 18:54:38

标签: c# linq

我希望在C#中使用@ResultGroup作为输出参数。

请帮我这样做。

这是我的存储过程:

USE [DBAzmoon]
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER proc [dbo].[SearchInGroup]
@GroupName nvarchar(50),
@ResultGroup int output
AS
if(Exists(select* From TblGroup where GroupName=@GroupName))
    set @ResultGroup=1
else
Begin
  set @ResultGroup=0
    Insert Into TblGroup(GroupName) Values (@GroupName)
End

1 个答案:

答案 0 :(得分:0)

您可以这样使用:

int ResultGroup;    
context.SearchInGroup(GroupName ,ref ResultGroup)

尝试关注此帖:

http://weblogs.asp.net/scottgu/linq-to-sql-part-6-retrieving-data-using-stored-procedures