vote up 6 vote down star
1

I have IQueryable<> object.

I want to Convert it into List<> with selected columns like new { ID = s.ID, Name = s.Name }.

Edited

Marc you are absolutely right!

but I have only access to FindByAll() Method (because of my architecture).

And it gives me whole object in IQueryable<>.

And I have strict requirement( for creating json object for select tag) to have only list<> type with two fields.

flag

72% accept rate
So what fails if you use FindByAll(...).Select(s=>new {ID = s.ID, Name = s.Name}).ToList()? – Marc Gravell Apr 16 at 12:20
Note also the comment under my answer about creating your own type if needed. Json.NET might demand editable properties, in which case you'll need your own type (C# anonymous types are immutable). – Marc Gravell Apr 16 at 12:21
Ok! got it! I am so stupid! – Vikas Apr 16 at 12:28

3 Answers

vote up 13 vote down check

Then just Select:

var list = source.Select(s=>new { ID = s.ID, Name = s.Name }).ToList();

(edit) Actually - the names could be inferred in this case, so you could use:

var list = source.Select(s=>new { s.ID, s.Name }).ToList();

which saves a few electrons...

link|flag
As per my Tier, I can only get the whole object by linq query. that's the problem – Vikas Apr 16 at 12:08
Can you explain? I don't understand the comment. – Marc Gravell Apr 16 at 12:11
1  
If you mean you need to return this object between tiers, then you'll need to create a regular type with an ID and Name, and Select(s=>new YourType {ID = s.ID, Name = s.Name }).ToList(); – Marc Gravell Apr 16 at 12:16
vote up 2 vote down

System.Linq has ToList() on IQueryable<> and IEnumerable<>. It will cause a full pass through the data to put it into a list, though. You loose your deferred invoke when you do this. Not a big deal if it is the consumer of the data.

link|flag
vote up 1 vote down

Add using System.Linq and call the ToList() on the IQueryable<>

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.