Skip to content

Commit

Permalink
chore: removed schema dbo from SQL Server repository
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosgoias committed Aug 10, 2023
1 parent f8fe911 commit de4d8cd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public async Task<IList<RetryQueueItemMessageDbo>> GetMessagesOrderedAsync(IDbCo
}
var parameter = new SqlParameter("@RetryQueueItemsIds", entriesToLoad);
parameter.Direction = System.Data.ParameterDirection.Input;
parameter.TypeName = "dbo.TY_RetryQueueItemsIds";
parameter.TypeName = "TY_RetryQueueItemsIds";

command.Parameters.Add(parameter);
command.CommandType = System.Data.CommandType.Text;
Expand Down

0 comments on commit de4d8cd

Please sign in to comment.