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.