Conversation
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #7200 +/- ##
==========================================
+ Coverage 57.43% 61.48% +4.05%
==========================================
Files 2032 2032
Lines 89377 89398 +21
Branches 7944 7945 +1
==========================================
+ Hits 51332 54968 +3636
+ Misses 36202 32505 -3697
- Partials 1843 1925 +82 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
|
|
Great job! No new security vulnerabilities introduced in this pull request |
| @@ -0,0 +1,8 @@ | |||
| CREATE VIEW [dbo].[ProviderAbilityView] | |||
There was a problem hiding this comment.
❓ Is this view necessary? We already have a view called ProviderView that contains all of the columns in the Provider table. Can you just select the columns you need from ProviderView in your stored procedure?
There was a problem hiding this comment.
This was done according to our contributing docs.
| SET NOCOUNT ON | ||
|
|
||
| SELECT | ||
| [Id], |
There was a problem hiding this comment.
This is fine but you might want to change it to SELECT * to match the contributing docs.




🎟️ Tracking
PM-32067
📔 Objective
This adds Provider Ability View, repository methods, stored procedure and tests for the new cache to use.