KQ
KQ
CC#
Created by KQ on 2/9/2023 in #help
❔ Transform foreach to LINQ for optimization
is there a way to transform this logic from foreach to LINQ? I'm talking about the two foreaches. Thank you List<JobEntity> JobsToSync = await this.JobsReppository.GetAllQueryable() .Where(x => x.IsSyncedWithServer == false) .ToListAsync(); foreach (JobEntity jobEntityToSync in JobsToSync) { List<PictureEntity> Images = jobEntityToSync.Images.ToList(); foreach (PictureEntity image in Images) { //some logic } }
20 replies