1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-21 04:55:08 -05:00

call proper sproc

This commit is contained in:
Kyle Spearrin 2018-10-25 07:46:58 -04:00
parent 1e1a19b937
commit d0421ab1df

View File

@ -120,7 +120,7 @@ namespace Bit.Core.Repositories.SqlServer
using(var connection = new SqlConnection(ConnectionString)) using(var connection = new SqlConnection(ConnectionString))
{ {
var results = await connection.ExecuteAsync( var results = await connection.ExecuteAsync(
$"[{Schema}].[Collection_CreateWithGroupsAndUsers]", $"[{Schema}].[Collection_CreateWithGroups]",
objWithGroups, objWithGroups,
commandType: CommandType.StoredProcedure); commandType: CommandType.StoredProcedure);
} }