私は、stackoverflow.comのDapper Micro ORMの結果に非常に感銘を受けました。私は新しいプロジェクトのためにそれを検討していますが、私のプロジェクトがストアドプロシージャを必要とすることがあり、ウェブでたくさん検索しましたが、ストアドプロシージャで何も見つからないという懸念があります。Dapperでストアドプロシージャを使用する方法はありますか?
それが可能であるかどうかを教えてください。
私は、stackoverflow.comのDapper Micro ORMの結果に非常に感銘を受けました。私は新しいプロジェクトのためにそれを検討していますが、私のプロジェクトがストアドプロシージャを必要とすることがあり、ウェブでたくさん検索しましたが、ストアドプロシージャで何も見つからないという懸念があります。Dapperでストアドプロシージャを使用する方法はありますか?
それが可能であるかどうかを教えてください。
回答:
単純なケースでは、次のことができます。
var user = cnn.Query<User>("spGetUser", new {Id = 1},
commandType: CommandType.StoredProcedure).First();
もっと凝ったものが欲しいなら、次のようにすることができます:
var p = new DynamicParameters();
p.Add("@a", 11);
p.Add("@b", dbType: DbType.Int32, direction: ParameterDirection.Output);
p.Add("@c", dbType: DbType.Int32, direction: ParameterDirection.ReturnValue);
cnn.Execute("spMagicProc", p, commandType: CommandType.StoredProcedure);
int b = p.Get<int>("@b");
int c = p.Get<int>("@c");
さらに、execをバッチで使用できますが、それはより不格好です。
cnn.Query<MyType>
する場合、プロシージャの出力パラメータの値を取得するにはどうすればよいですか?
答えは、使用する必要があるストアドプロシージャの機能に依存すると思います。
結果セットを返すストアドプロシージャは、を使用して実行できますQuery
。結果セットを返さないストアドプロシージャは、SQLコマンドとしてExecute
-を使用して(両方を使用してEXEC <procname>
)実行できます(必要に応じて入力パラメーターも追加)。詳細については、ドキュメントを参照してください。
リビジョン2d128ccdc9a2の時点では、OUTPUT
パラメーターのネイティブサポートはないようです。これを追加するか、またはQuery
TSQL変数を宣言OUTPUT
し、ローカル変数にパラメーターを収集するSPを実行し、最終的に結果セットでそれらを返す、より複雑なコマンドを作成できます。
DECLARE @output int
EXEC <some stored proc> @i = @output OUTPUT
SELECT @output AS output1
これは、ストアプロシージャから戻り値を取得するためのコードです
ストアドプロシージャ:
alter proc [dbo].[UserlogincheckMVC]
@username nvarchar(max),
@password nvarchar(max)
as
begin
if exists(select Username from Adminlogin where Username =@username and Password=@password)
begin
return 1
end
else
begin
return 0
end
end
コード:
var parameters = new DynamicParameters();
string pass = EncrytDecry.Encrypt(objUL.Password);
conx.Open();
parameters.Add("@username", objUL.Username);
parameters.Add("@password", pass);
parameters.Add("@RESULT", dbType: DbType.Int32, direction: ParameterDirection.ReturnValue);
var RS = conx.Execute("UserlogincheckMVC", parameters, null, null, commandType: CommandType.StoredProcedure);
int result = parameters.Get<int>("@RESULT");
上記と同じ、もう少し詳細
.Net Coreの使用
コントローラ
public class TestController : Controller
{
private string connectionString;
public IDbConnection Connection
{
get { return new SqlConnection(connectionString); }
}
public TestController()
{
connectionString = @"Data Source=OCIUZWORKSPC;Initial Catalog=SocialStoriesDB;Integrated Security=True";
}
public JsonResult GetEventCategory(string q)
{
using (IDbConnection dbConnection = Connection)
{
var categories = dbConnection.Query<ResultTokenInput>("GetEventCategories", new { keyword = q },
commandType: CommandType.StoredProcedure).FirstOrDefault();
return Json(categories);
}
}
public class ResultTokenInput
{
public int ID { get; set; }
public string name { get; set; }
}
}
ストアドプロシージャ(親子関係)
create PROCEDURE GetEventCategories
@keyword as nvarchar(100)
AS
BEGIN
WITH CTE(Id, Name, IdHierarchy,parentId) AS
(
SELECT
e.EventCategoryID as Id, cast(e.Title as varchar(max)) as Name,
cast(cast(e.EventCategoryID as char(5)) as varchar(max)) IdHierarchy,ParentID
FROM
EventCategory e where e.Title like '%'+@keyword+'%'
-- WHERE
-- parentid = @parentid
UNION ALL
SELECT
p.EventCategoryID as Id, cast(p.Title + '>>' + c.name as varchar(max)) as Name,
c.IdHierarchy + cast(p.EventCategoryID as char(5)),p.ParentID
FROM
EventCategory p
JOIN CTE c ON c.Id = p.parentid
where p.Title like '%'+@keyword+'%'
)
SELECT
*
FROM
CTE
ORDER BY
IdHierarchy
参考資料
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Http;
using SocialStoriesCore.Data;
using Microsoft.EntityFrameworkCore;
using Dapper;
using System.Data;
using System.Data.SqlClient;
Microsoft.EntityFrameworkCore
ですか?DALでDapperのみを使用しますか?
複数のリターンとマルチパラメータ
string ConnectionString = CommonFunctions.GetConnectionString();
using (IDbConnection conn = new SqlConnection(ConnectionString))
{
IEnumerable<dynamic> results = conn.Query(sql: "ProductSearch",
param: new { CategoryID = 1, SubCategoryID="", PageNumber=1 },
commandType: CommandType.StoredProcedure);. // single result
var reader = conn.QueryMultiple("ProductSearch",
param: new { CategoryID = 1, SubCategoryID = "", PageNumber = 1 },
commandType: CommandType.StoredProcedure); // multiple result
var userdetails = reader.Read<dynamic>().ToList(); // instead of dynamic, you can use your objects
var salarydetails = reader.Read<dynamic>().ToList();
}
public static string GetConnectionString()
{
// Put the name the Sqlconnection from WebConfig..
return ConfigurationManager.ConnectionStrings["DefaultConnection"].ConnectionString;
}
public static IEnumerable<T> ExecuteProcedure<T>(this SqlConnection connection,
string storedProcedure, object parameters = null,
int commandTimeout = 180)
{
try
{
if (connection.State != ConnectionState.Open)
{
connection.Close();
connection.Open();
}
if (parameters != null)
{
return connection.Query<T>(storedProcedure, parameters,
commandType: CommandType.StoredProcedure, commandTimeout: commandTimeout);
}
else
{
return connection.Query<T>(storedProcedure,
commandType: CommandType.StoredProcedure, commandTimeout: commandTimeout);
}
}
catch (Exception ex)
{
connection.Close();
throw ex;
}
finally
{
connection.Close();
}
}
}
var data = db.Connect.ExecuteProcedure<PictureModel>("GetPagePicturesById",
new
{
PageId = pageId,
LangId = languageId,
PictureTypeId = pictureTypeId
}).ToList();