aboutsummaryrefslogtreecommitdiff
path: root/src/Data/DevHive.Data/Repositories
diff options
context:
space:
mode:
Diffstat (limited to 'src/Data/DevHive.Data/Repositories')
-rw-r--r--src/Data/DevHive.Data/Repositories/RatingRepository.cs11
1 files changed, 8 insertions, 3 deletions
diff --git a/src/Data/DevHive.Data/Repositories/RatingRepository.cs b/src/Data/DevHive.Data/Repositories/RatingRepository.cs
index 02f92c0..9bb2368 100644
--- a/src/Data/DevHive.Data/Repositories/RatingRepository.cs
+++ b/src/Data/DevHive.Data/Repositories/RatingRepository.cs
@@ -32,19 +32,24 @@ namespace DevHive.Data.Repositories
return await this._context.Rating
.Where(x => x.Post.Id == postId).ToListAsync();
}
-
public async Task<bool> UserRatedPost(Guid userId, Guid postId)
{
- return await this._context.UserRate
+ return await this._context.Rating
.Where(x => x.Post.Id == postId)
.AnyAsync(x => x.User.Id == userId);
}
-
public async Task<Rating> GetRatingByUserAndPostId(Guid userId, Guid postId)
{
return await this._context.Rating
.FirstOrDefaultAsync(x => x.Post.Id == postId && x.User.Id == userId);
}
+
+ public async Task<bool> DoesRatingExist(Guid id)
+ {
+ return await this._context.Rating
+ .AsNoTracking()
+ .AnyAsync(r => r.Id == id);
+ }
}
}