Dapper: How to get return value ( output value) by call stored procedure

Posted leestone

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Dapper: How to get return value ( output value) by call stored procedure相关的知识,希望对你有一定的参考价值。

使用Dapper 执行存储过程插入一条数据,同时返回主键
Dapper 的参数类型有以下四种 System.Data.ParameterDirection

    public enum ParameterDirection
    {

        Input = 1,

        Output = 2,

        InputOutput = 3,

        ReturnValue = 6
    }

Method 1 Use ParameterDirection.ReturnValue

key:

return @@IDENTITY
p.Add("@ID", dbType: DbType.Int32, direction:ParameterDirection.ReturnValue);
var id = p.Get("@tID");

MyTabel:
CREATE TABLE [dbo].[WorkLog](
    [LogID] [bigint] IDENTITY(1,1) NOT NULL,
    [TypeID] [int] NOT NULL,
    [InsertDate] [datetime2](7) NOT NULL,
    [Description] [nvarchar](max) NULL,
    [UserName] [nvarchar](250) NULL,
    [StatusId] [int] NULL
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
Store Procedure:
CREATE proc [dbo].[InsertLogAndReturnID]
   @TypeID INT ,
   @Description nvarchar(max),
   @UserName nvarchar(250)
   AS
  Begin
    declare @TestID INT
    
     INSERT INTO [dbo].[WorkLog]
           ( [TypeID]
           ,[InsertDate]
           ,[Description]
           ,[UserName])
     VALUES
           (
           @TypeID
           , GETDATE()
           , @Description
           ,@UserName )
    
    return @@IDENTITY   
  END
GO
C# code:
var spName = "[dbo].[InsertLogAndReturnID]";

 using (SqlConnection objConnection = new SqlConnection(Util.ConnectionString))
 {
    objConnection.Open();
    DynamicParameters p = new DynamicParameters();

    p.Add("@ID", dbType: DbType.Int32, direction: ParameterDirection.ReturnValue);
    p.Add("@TypeID", 1);
    p.Add("@Description", "TEST1");
    p.Add("@UserName", "stone");

    var row = SqlMapper.Execute(objConnection, spName, p, commandType: CommandType.StoredProcedure);
     var id  = p.Get<Int32>("@ID");

      objConnection.Close();
   }

Method 1 Use ParameterDirection.Output

Stored Procedure
CREATE proc [dbo].[InsertLogAndReturnID]
   @TypeID INT ,
   @Description nvarchar(max),
   @UserName nvarchar(250),
   @ID INT OUTPUT
   AS
  Begin
    declare @TestID INT
    
     INSERT INTO [dbo].[WorkLog]
           ( [TypeID]
           ,[InsertDate]
           ,[Description]
           ,[UserName])
     VALUES
           (
           @TypeID
           , GETDATE()
           , @Description
           ,@UserName )
    
    SELECT @ID = @@IDENTITY 
  END
GO
C# Code
var spName = "[dbo].[InsertLogAndReturnID]";

 using (SqlConnection objConnection = new SqlConnection(Util.ConnectionString))
 {
    objConnection.Open();
    DynamicParameters p = new DynamicParameters();

    p.Add("@TestID", dbType: DbType.Int32, direction: ParameterDirection.Output);
    p.Add("@TypeID", 1);
    p.Add("@Description", "TEST1");
    p.Add("@UserName", "stone");

    var row = SqlMapper.Execute(objConnection, spName, p, commandType: CommandType.StoredProcedure);
     var id  = p.Get<Int32>("@TestID");

      objConnection.Close();
   }

以上是关于Dapper: How to get return value ( output value) by call stored procedure的主要内容,如果未能解决你的问题,请参考以下文章

How to get service execuable path

How to get date from OAMessageDateFieldBean

how-to-get-a-job-in-deep-learning

csuoj-1720-How to Get 2^n

How to GET a Cup of Coffee

[特征选择] DIscover Feature Engineering, How to Engineer Features and How to Get Good at It 翻译