aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Data/Repositories/PostRepository.cs
diff options
context:
space:
mode:
authortranstrike <transtrike@gmail.com>2021-02-01 16:03:38 +0200
committertranstrike <transtrike@gmail.com>2021-02-01 16:03:38 +0200
commitb41f887712ef8f2f0b602da3042261a78c5f492a (patch)
treefb6437ea34896da7c7db3a292bbdb8ee7d14e889 /src/DevHive.Data/Repositories/PostRepository.cs
parentaa342542789b22f24ce3ecbfcb7888d4ff12d30c (diff)
downloadDevHive-b41f887712ef8f2f0b602da3042261a78c5f492a.tar
DevHive-b41f887712ef8f2f0b602da3042261a78c5f492a.tar.gz
DevHive-b41f887712ef8f2f0b602da3042261a78c5f492a.zip
Commented out implementation of Rating; Bug fixes
Diffstat (limited to 'src/DevHive.Data/Repositories/PostRepository.cs')
-rw-r--r--src/DevHive.Data/Repositories/PostRepository.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/DevHive.Data/Repositories/PostRepository.cs b/src/DevHive.Data/Repositories/PostRepository.cs
index f9f2475..31eb7d0 100644
--- a/src/DevHive.Data/Repositories/PostRepository.cs
+++ b/src/DevHive.Data/Repositories/PostRepository.cs
@@ -24,7 +24,7 @@ namespace DevHive.Data.Repositories
return await this._context.Posts
.Include(x => x.Comments)
.Include(x => x.Creator)
- .Include(x => x.Rating)
+ // .Include(x => x.Rating)
.FirstOrDefaultAsync(x => x.Id == id);
}
@@ -45,7 +45,7 @@ namespace DevHive.Data.Repositories
public override async Task<bool> EditAsync(Guid id, Post newEntity)
{
Post post = await this.GetByIdAsync(id);
- var ratingId = post.RatingId;
+ // var ratingId = post.Rating.Id;
this._context
.Entry(post)
@@ -60,11 +60,11 @@ namespace DevHive.Data.Repositories
foreach(var comment in newEntity.Comments)
post.Comments.Add(comment);
- post.RatingId = ratingId;
+ // post.Rating.Id = ratingId;
this._context.Entry(post).State = EntityState.Modified;
- return await this.SaveChangesAsync(this._context);
+ return await this.SaveChangesAsync();
}
#endregion