Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a HQL query that can generate either an IList of results, or an IEnumerable of results.

However, I want it to return an array of the Entity that I'm selecting, what would be the best way of accomplishing that? I can either enumerate through it and build the array, or use CopyTo() a defined array.

Is there any better way? I went with the CopyTo-approach.

share|improve this question

2 Answers

up vote 57 down vote accepted

Which version of .NET are you using? If it's .NET 3.5 I'd just call ToArray() and have done with it.

If you've only got a nongeneric IEnumerable, do something like this:

IEnumerable query = ...;
MyEntityType[] array = query.Cast<MyEntityType>().ToArray();

If you don't know the type within that method, but callers will know it, make the method generic:

public static void T[] PerformQuery<T>()
{
    IEnumerable query = ...;
    T[] array = query.Cast<T>().ToArray();
    return array;
}
share|improve this answer
It's 3.5 but the IQuery doesn't have a ToArray, nor does IEnumerable or IList either as far as I can tell? – jishi Nov 6 '08 at 13:38
Thanks man, that was useful. Would you say that there is any difference in calling Cast<>() from the IList vs the IEnumerable? – jishi Nov 6 '08 at 13:45
1  
No - there's just the one extension method. (It's not within the interface itself.) – Jon Skeet Nov 6 '08 at 13:47
1  
@Shimmy: Yes there is... aside from anything else, it's telling the compiler what kind of array to expect! If you only want an object[] just use Cast<object>. The nongeneric IEnumerable doesn't have a ToArray extension method, so you can't just call foo.ToArray<object> or anything like that. – Jon Skeet Jul 29 '10 at 14:19
4  
The ToArray extension method is in the System.Linq namespace, thought that might be good to know :). – Tomas Jansson Nov 10 '10 at 8:52
show 7 more comments

Put the following in your .cs file:

using System.Linq;

You will then be able to use the following extension method from System.Linq.Enumerable:

public static TSource[] ToArray(this System.Collections.Generic.IEnumerable source)

I.e.

IEnumerable<object> query = ...;
object[] bob = query.ToArray();
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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