mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -05:00
use proper Grant entity model for Dapper mapping (#3657)
This commit is contained in:
parent
3392ede534
commit
6fbb790988
@ -23,7 +23,7 @@ public class GrantRepository : BaseRepository, IGrantRepository
|
|||||||
{
|
{
|
||||||
using (var connection = new SqlConnection(ConnectionString))
|
using (var connection = new SqlConnection(ConnectionString))
|
||||||
{
|
{
|
||||||
var results = await connection.QueryAsync<IGrant>(
|
var results = await connection.QueryAsync<Grant>(
|
||||||
"[dbo].[Grant_ReadByKey]",
|
"[dbo].[Grant_ReadByKey]",
|
||||||
new { Key = key },
|
new { Key = key },
|
||||||
commandType: CommandType.StoredProcedure);
|
commandType: CommandType.StoredProcedure);
|
||||||
@ -37,12 +37,12 @@ public class GrantRepository : BaseRepository, IGrantRepository
|
|||||||
{
|
{
|
||||||
using (var connection = new SqlConnection(ConnectionString))
|
using (var connection = new SqlConnection(ConnectionString))
|
||||||
{
|
{
|
||||||
var results = await connection.QueryAsync<IGrant>(
|
var results = await connection.QueryAsync<Grant>(
|
||||||
"[dbo].[Grant_Read]",
|
"[dbo].[Grant_Read]",
|
||||||
new { SubjectId = subjectId, SessionId = sessionId, ClientId = clientId, Type = type },
|
new { SubjectId = subjectId, SessionId = sessionId, ClientId = clientId, Type = type },
|
||||||
commandType: CommandType.StoredProcedure);
|
commandType: CommandType.StoredProcedure);
|
||||||
|
|
||||||
return results.ToList();
|
return results.ToList<IGrant>();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user