Convert Linq ObjectQuery IQueryable to IEnumerable?

Compile error shows, that feat is "collection of collection of string" (literaly "IQueriable of IEnemerable of string"). So you need to generate flat collection feat. SelectMany(x=>x).

Compile error shows, that feat is "collection of collection of string" (literaly "IQueriable of IEnemerable of string"). So you need to generate flat collection. Feat.

SelectMany(x=>x).

Depending on what you need to do with the list you can just do: var itemTypes = feat.ToList().

System.Data.Objects. ObjectQuery is an implementation of System.Linq.IQueryable. Your type, however, is an IQueryable of IEnumerable objects.

Perform a SelectMany, so you no longer have a collection of string collections, but just a collection of strings.

Argument 1: cannot convert from 'System.Linq. IEnumerable>' to 'System.Collections.Generic.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions