var users = ctx.ScrapedUsers
.Where(user => user.Parents.Any(x => x.Id == target.Id) && user.StatusesCount > 0 && user.ScreenName != null
&& !ctx.Profiles
.Where(x => x.Id == Context.Profile.Id)
.Take(1)
.Any(x => x.ProcessedUsers.Any(x => x.Id == user.Id)) && user.LastProcessed.Year == 1970)
.OrderBy(user => user.LastProcessed)
.Take(processingCount - scrapedUsers.Count)
.ToList();
var users = ctx.ScrapedUsers
.Where(user => user.Parents.Any(x => x.Id == target.Id) && user.StatusesCount > 0 && user.ScreenName != null
&& !ctx.Profiles
.Where(x => x.Id == Context.Profile.Id)
.Take(1)
.Any(x => x.ProcessedUsers.Any(x => x.Id == user.Id)) && user.LastProcessed.Year == 1970)
.OrderBy(user => user.LastProcessed)
.Take(processingCount - scrapedUsers.Count)
.ToList();