Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am working on .Net web application (c#, Entity Framework 4.1) and my question is about ObjectDataSource and its Selected event.

In ObjectDataSource_Selected event I am trying to read (iterate through) e.ReturnValue. In my case e.ReturnValue is object List<EntityType>.

To access values in e.ReturnValue object I could simply do

MyEntityType et = e.ReturnValue as MyEntityType

And then I would be able to use foreach loop and access all individual properties within the list: (my field names) name, dates, etc...

BUT, in my particular case ObjectDataSource is dynamic and I don't know what will be the type of returned data, it could be List<EntityType1>, List<EntityType2>, List<EntityType3>, etc... So, it is always a List, but it is not known of what type.

When I look e.ReturnValue in debugger I see that it is populated and I see all my properties. I just don't know how to access them (without casting to proper type).

I tried casting into IEnumberable and iterating IEnumerable, but only available method is ToString().

Question:

Is there a way to iterate IEnumerable or my e.ReturnValue and do something like this: (exuse my pseude code)

foreach (var item in e.ReturnValue) {
    Console.Write(item.name);
    Console.Write(item.value);
}

UPDATE:

Here is what I managed to do so far:

...
IEnumerable ListOfTests = e.ReturnValue as IEnumerable;
foreach (var item in ListOfTests)
{
    Type type = item.GetType();
    PropertyInfo[] pi = type.GetProperties();
    foreach (PropertyInfo p in pi)
    {
        string PropertyName = p.Name;
        string ProperyValue = p.GetValue(item, null).ToString();
    }
}

I almost thought I nailed it but line

string ProperyValue = p.GetValue(item, null).ToString();

is giving me error saying that ObjectContext (I use DbContext) is disposed. I ran on this error before on few occasions. Why? ObjectDataSource retrieved data and now data is in this ListOfTests object. What ObjectContext has to do with this? Of course it is closed.

share|improve this question
Ok... I think I got it. There were few navigational properties in my return that above code was trying to read and of course those can't be read because context is disposed. Once I get rid of them, I think above code will work fine. I am still interested if there is better/easier way to read IEnumerable. :-) – bobetko Aug 1 '12 at 22:47

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.