コード例 #1
0
        public GroupUser LeaveGroup(GroupUser groupUser)
        {
            _context.Remove(groupUser);
            _context.SaveChanges();

            return(groupUser);
        }
コード例 #2
0
ファイル: SettingRepository.cs プロジェクト: nurlaney/Dada
        public Group DeleteGroup(Group group)
        {
            _context.Remove(group);
            _context.SaveChanges();

            return(group);
        }
コード例 #3
0
ファイル: ProfileRepository.cs プロジェクト: nurlaney/Dada
        public Post DeletePost(Post post)
        {
            _context.Remove(post);
            _context.SaveChanges();

            return(post);
        }
コード例 #4
0
        public Comment DeleteComment(Comment comment)
        {
            _context.Remove(comment);
            _context.SaveChanges();

            return(comment);
        }
コード例 #5
0
ファイル: ReactionRepository.cs プロジェクト: nurlaney/Dada
 public void RemoveCommentReaction(CommentReaction commentReaction)
 {
     _context.Remove(commentReaction);
     _context.SaveChanges();
 }