Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
689 views
in Technique[技术] by (71.8m points)

asp.net - How to dynamically get a property by name from a C# ExpandoObject?

I have an ExpandoObject and want to make a getter for it that will return a property by name at runtime, where the name is specified in a string instead of hardcoded.

For example, I CAN do this:

account.features.isEmailEnabled;

and that will return true. account is a ExpandoObject, and features is also an ExpandoObject. So I have an ExpandoObject that contains other ExpandoObjects.

So what I want to be able to do is this:

account.features.GetProperty("isEmailEnabled");

and have that return true.

The reason is that I have many features, and I want to be able to write one generic getter method where I can pass in the name of the feature I want, and the method will pass me back the value for account.features.whatever (where "whatever" is specified by passing in a string to the generic getter method). Otherwise I am going to have to write 30-some getters one for each feature.

I did a lot of research and tried doing something like:

var prop = account.features.GetType();  
// this returns System.Dyanmic.ExpandoObject

followed by

var value = prop.GetProperty(featureNameAsString); 

but value always comes back as null. I don't understand why. In the watch window I can do account.features.isEmailEnabled and it shows true and says its a boolean. But if I try to get at this value using the approach above and pass in isEmailEnabled as the featureNameAsString I just get null.

Can someone please tell me what I may be doing wrong and what's a good approach, without it being too complex?

I am working with ASP.NET under the 4.5.1 framework.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

ExpandoObject provides access both via dynamic and via IDictionary<string,object> - so you could just use the dictionary API:

var byName = (IDictionary<string,object>)account.features;
bool val = (bool)byName["isEmailEnabled"];

Or if the name is fixed, just:

bool val = ((dynamic)account).features.isEmailEnabled;

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...