1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-03 00:52:49 -05:00
This commit is contained in:
Kyle Spearrin
2017-03-03 21:53:27 -05:00
parent 29e3605576
commit 2f41f260ec
2 changed files with 15 additions and 2 deletions

View File

@ -23,7 +23,7 @@ namespace Bit.Core.Repositories.SqlServer
using(var connection = new SqlConnection(ConnectionString))
{
var results = await connection.QueryAsync<OrganizationUser>(
"[dbo].[OrganizationUser_ReadByIdUserId]",
"[dbo].[OrganizationUser_ReadByOrganizationIdUserId]",
new { OrganizationId = organizationId, UserId = userId },
commandType: CommandType.StoredProcedure);