Example #1
0
        public async Task RemoveAll(string username, NotificationsDeleteOptions options)
        {
            var dbUser = await dbcontext.Users.FirstOrDefaultAsync(t => t.UserName == username);

            if (dbUser == null)
            {
                return;
            }
            var notifications = dbcontext.Notifications.Where(n => n.UserId == dbUser.Id);

            switch (options)
            {
            case NotificationsDeleteOptions.All:
                break;

            case NotificationsDeleteOptions.AllNotImportant:
                notifications = notifications.Where(n => !n.Important);
                break;

            case NotificationsDeleteOptions.AllSeen:
                notifications = notifications.Where(n => n.Seen && !n.Important);
                break;
            }
            var range = await notifications.ToListAsync();

            dbcontext.Notifications.RemoveRange(range);
            await dbcontext.SaveChangesAsync();
        }
 public async Task DeleteAll(string username, NotificationsDeleteOptions options)
 {
     await notificationRepo.RemoveAll(username, options);
 }