Evaluation of method System.Linq.Enumerable.ToList() calls into native method Interop+Kernel32.FindStringOrdinal() in QuickWatch
问题 I have a list of posts that i get from DB like that: var iQueryablePost= from p in context.Posts select new Post { Id=p.id, Label=p.label }; var posts = new List<Post>(); posts = await iQueryablePost.ToListAsync(); I wanna filter my posts after getting all from DB, if i add where to my iQueryable it works just fine but i need to get all post from DB. That's what i did and the message I see in QuickWatch : posts = !string.IsNullOrWhiteSpace(query.PdcIdSITiers) ? posts.Where(c => c.Label