gpt4 book ai didi

c# - 在c#中使用linq执行存储过程

转载 作者:太空狗 更新时间:2023-10-30 00:07:47 24 4
gpt4 key购买 nike

我在 sql server 2008 中创建了一个存储过程,它为我提供了对表所做的更改。我正在使用 Linq to SQL 在 C# 中使用此表。我的存储过程是

CREATE PROCEDURE dbo.getlog 
-- Add the parameters for the stored procedure here
@p1 int = 0,
@p2 int = 0
AS
BEGIN
-- SET NOCOUNT ON added to prevent extra result sets from
-- interfering with SELECT statements.
SET NOCOUNT ON;

-- Insert statements for procedure here
DECLARE @from_lsn binary(10), @to_lsn binary(10)
SET @from_lsn =
sys.fn_cdc_get_min_lsn('dbo_User_Info')
SET @to_lsn = sys.fn_cdc_get_max_lsn()
SELECT ID_number, Name, Age FROM cdc.fn_cdc_get_all_changes_dbo_User_Info
(@from_lsn, @to_lsn, N'all');
END
GO

上述程序在sql server中运行良好。然而,当我在 C# 中使用 linq 运行此语句时

        mytestDataContext obj = new mytestDataContext();
var test=obj.ExecuteCommand("dbo.getlog");
foreach( var abc in test)
{}

我收到这个错误

Error 1 foreach statement cannot operate on variables of type 'int' because 'int' does not contain a public definition for 'GetEnumerator'

最佳答案

ExecuteCommand 返回一个 int.. 而不是您的结果。

请在此处查看 MSDN:http://msdn.microsoft.com/en-us/library/system.data.linq.datacontext.executecommand.aspx

public int ExecuteCommand(
string command,
params Object[] parameters
)

我认为您在寻找ExecuteQuery

关于c# - 在c#中使用linq执行存储过程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17289860/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com