ExpandoObject is a .NET type whose members can be added and removed at runtime.

learn more… | top users | synonyms

1
vote
1answer
35 views

ExpandoObject in Nemerle

AFAIK Nemerle doesn't have dynamic keyword, late binding doesn't work as well: late{ mutable obj=ExpandoObject(); obj.test="test"; //MissingMethodException } So, is there a ...
0
votes
0answers
41 views

Using ExpandoObject with anonymous type

I've been using the ExpandoObject() workaround for anonymous types that has been discussed on this site. I am running into a problem though as my view won't compile. I have used the following ...
0
votes
4answers
109 views

convert from dynamic xml to c# object

I need inputs in converting an dynamic xml to defined c# object model My sample xml is as below : <?xml version="1.0" encoding="utf-8" ?> <Persons> <Person> ...
1
vote
1answer
89 views

Exposing properties of an ExpandoObject

I've got an ExpandoObject that I'm sending to an external library method which takes an object. From what I've seen this external lib uses TypeDescriptor.GetProperties internally and that seems to ...
0
votes
1answer
40 views

Rhino Mock Stubbing method with ExpandoObject as parameter

I want to unit test that a method under test calls a stubbed object and method with the right parameters. The problem is that one of the parameters is a dynamic (ExpandoObject). If "data" (variable ...
3
votes
2answers
64 views

Special characters for dynamic objects?

Is there any limitations on the kind of characters that I can use to create a property for a dynamic object? Is there a list of characters that I cannot use (e.g. / * @)?
2
votes
1answer
70 views

How to convert to List<ExpandoObject> properly

Look at the below code private static List<ExpandoObject> GetDBDetails() { var directoryPath = Environment.CurrentDirectory.Replace("\\bin\\Debug", "\\DataSource"); ...
2
votes
2answers
148 views

'System.Collections.Generic.IList<object>' does not contain a definition for 'Add' when using 'dynamic' and 'ExpandoObject'

Say that I have a class, Foo, looking something like this: public class Foo : IFoo { public Foo() { Bars = new List<dynamic>(); } public IList<dynamic> Bars { get; ...
3
votes
0answers
52 views

Patterns / Problems that use dynamic types, dynamic objects and expando objects in C# [duplicate]

I have recently become aware of the dynamic keyword after doing some digging into Dynamic Objects and Expando Objects in C# I can appreciate that it is quite cool however apart from a ViewBag in ...
0
votes
1answer
43 views

How can I overload method with ExpandoObject?

I have the following expando object dynamic person = new ExpandoObject(); person.FirstName = " FirstName "; person.SecondName = " FirstName "; person.FullName = ...
2
votes
2answers
132 views

Using LINQ, is it possible to output a dynamic object from a Select statement? If so, how?

Presently in LINQ, the following compiles and works just fine: var listOfFoo = myData.Select(x => new FooModel{ someProperty = x.prop1, someOtherProperty = x.prop2 }); public class ...
0
votes
1answer
44 views

ExpandoObject working differently in vb.net then in c#

after converting some code fron here https://github.com/facebook-csharp-sdk/facebook-winforms-sample the isnt acseptig code like parameters.client_id here is the section im haveing problems with ...
1
vote
1answer
327 views

Deserialize a property as an ExpandoObject using JSON.NET

For example, there's an object like the next one: public class Container { public object Data { get; set; } } And it's used this way: Container container = new Container { Data = new ...
0
votes
1answer
275 views

Binding custom properties' values of an instance of ExpandoObject to a .NET Windows Forms controls

Context: Visual Studo 2012/C# 5.0 I have a .NET Windows Form with three textbox controls: firstNameTextBox, lastNameTextBox and ageTextBox, and a simple custom class public class Customer { public ...
0
votes
1answer
42 views

ExpandoObject causes rule violation CA1502:Avoid excessive complexity

I have code that performs a mail merge type operation, and I am using dynamic/ExpandoObject to assemble the properties. I am doing this instead of building an anonymous class because different methods ...
2
votes
1answer
112 views

How do I recursively traverse and log the properties of a HttpRequestMessage in C#?

Thanks for looking! Background I am working on an MVC4 .NET application and have written a filter to catch all errors (application-wide), log said errors, and then report them to the dev team via an ...
7
votes
1answer
113 views

Define a calculated property on an expando object

I am working with expando object and I am trying to define a calculated property. I know that I can define a simple property by doing something like the following: dynamic myExpando = new ...
0
votes
1answer
70 views

Why do I have to manually create ExpandoObject to properly use the dynamic keyword?

I was looking at the question Use 'dynamic' throw a RuntimeBinderException. I face a similar problem: Basically, I want to create a "HTML helper" in ASP.NET MVC that uses dynamic arguments, akin to ...
4
votes
3answers
116 views

In C#, how do I remove a property from an ExpandoObject?

Say I have this object: dynamic foo = new ExpandoObject(); foo.bar = "fizz"; foo.bang = "buzz"; How would I remove foo.bang for example? I don't want to simply set the property's value to ...
3
votes
1answer
372 views

Creating a list of ExpandoObjects with properties read from an array

I'm trying to create a dynamic list of objects because I don't know what properties my objects will have until I read them from a file. So suppose I have the properties of my object inside an array ...
2
votes
4answers
106 views

How to create a new unknown or dynamic object in Python (expando)

In python how can we create a new object without having a predefined Class and later dynamically add properties to it ? example: dynamic_object dynamic_object.dynamic_property_a = "abc" ...
0
votes
0answers
25 views

Do expando objects needs to be added after every postback?

I've just started using expando attributes in a custom validator and noticed that they disappear after every postback. Is there anything I can do to persist them rather than recreate them each time. ...
0
votes
2answers
156 views

Dynamically add nested property to ExpandoObject

I'm getting a JSON object (may contain multiple levels of JSON arrays and such) which I want to translate into an ExpandoObject. I figured out how to add simple properties to an ExpandoObject at ...
3
votes
0answers
131 views

Binding to ExpandoObject. PropertyChanged not working

In my Windows Store app I have a list populated with ExpandoObjects. Data binding works fine for the initial values, but not for an image property I set asyncronously after a file has been downloaded: ...
2
votes
1answer
188 views

Dynamically removing a member from Expando /dynamic object

I'm looking for a way to remove members dynamically from an dynamic object (may be can we use Expando object here?). OK, I guess a little clarification is needed... When you do that : dynamic foo ...
4
votes
1answer
95 views

Access DynamicModel.Query using dot notation or index

I am using Massive micro-orm and SQL server 2008R2 with .NET framework 4.0. // This is my model public class sUser : DynamicModel { public sUser() : base(Model.strConnection, "Users", ...
5
votes
4answers
381 views

UI does not update with list of ExpandoObject

I have implemented the dynamic dataGrid by following this link. I am using Converter to bind the values from ExpandoObject. The columns shows values like total units for schools. Item ItemCount ...
3
votes
2answers
204 views

TPL Tasks + dynamic == OutOfMemoryException?

I'm working on a streaming twitter client- after 1-2 days of constant running, I'm getting memory usage of >1.4gigs (32 bit process) and soon after it hits that amount, I'll get an out of memory ...
0
votes
2answers
339 views

Convert ExpandoObject to anonymous type

Is it possible to convert ExpandoObject to anonymously typed object? Currently I have HtmlHelper extension that can take HTML attributes as a parameter. The problem is that my extension also needs to ...
0
votes
2answers
152 views

How to apply an Extension Method on the object having the type of ExpandoObject?

Here is my code: public static class DynamicExtensions public static void Add(this ExpandoObject obj, string path){ dynamic _obj = obj; if (_obj == null) throw new ...
2
votes
3answers
105 views

Why can't I return an Interface on implicit casting, but ExpandoObject can?

I have a DynamicObjectand I want it to be castable to IDictionary, exactly the same way as ExpandoObject. For example, casting an ExpandoObject to IDictionary is perfectly valid: dynamic ex = new ...
1
vote
0answers
296 views

ExpandoObject in Dictionary is null value

I have a Dictionary that is filled with dynamic objects (Dictionary) in C# .NET 4.0. Sometimes the value is a string, an int or a float but sometimes the value is an ExpandoObject. The Dictionary ...
0
votes
2answers
115 views

MethodInfo from ExpandoObject

I know that it was asked for Reflection on ExpandoObjects here before. My question is a little different. I have static and dynamic functions which should be executed from some function similar to ...
3
votes
2answers
829 views

check to see if a property exists within a C# Expando class

I would like to see if a property exist in a C# Expando Class. much like the hasattr function in python. I would like the c# equalant for hasattr. something like this... if (HasAttr(model, "Id")) ...
0
votes
1answer
468 views

Using C# ExpandoObjects (Dynamic) in PowerShell without underlying Dictionary structure

I have an ExpandoObject in C# that has been initialized with a great deal of fields/properties and I want to use this object in a PowerShell environment. When I retrieve such an object in PowerShell ...
1
vote
3answers
437 views

Merging two similar dynamic objects in C# creating collections on the way

I have multiple dynamic objects that (most of the time) differ in only a few values. I want to be able to merge these objects into one single object and in case of a conflict (two values aren't the ...
2
votes
1answer
603 views

XML Dynamic Object and IEnumberables

I am having some issues with my DynamicXML object, it is parsing XML great, and for single elements works great, but when I have multiple children elements its falling over. I am obviously missing ...
0
votes
1answer
681 views

MVC 3 WebGrid with a dynamic source

I have a dynamic list of data with a dynamic number of columns being created by a PIVOT function. Everything more or less works, but I wanted to apply some custom formatting to some of the columns. ...
0
votes
2answers
290 views

How to add object property on expando at runtime?

I read some article regarding expando object here but I want to achieve different thing. I want to add property object with dynamic property at runtime, put value on it and then retrieve later: ...
1
vote
1answer
218 views

Dynamically add static method in aspx page from ascx

i was searching google for that is there any way to add any method in my page at run time. i got a link from stackoverflow for this....that is expando object. i am not familiar with expando object. ...
0
votes
3answers
158 views

C# - ExpandoObject definition

looking the definition of System.Dynamic.ExpandoObject i came across this: public sealed class ExpandoObject : IDynamicMetaObjectProvider, IDictionary<string, object>, ...
1
vote
1answer
407 views

Does Mono for Android Support “dynamic” Keyword & ExpandoObject?

I want to use dynamic ExpandoObjects for a project I'm working on, but it doesn't compile with what I think is the correct configuration. From what I can see Mono supports the dynamic keyword and ...
1
vote
1answer
294 views

Binding ExpandoObject in Silverlight

In WPF, you can bind against ExpandoObject and other dynamic types: dynamic o = new ExpandoObject(); o.Foo = "Hello"; DataContext = o; <TextBlock Text="{Binding Foo}"/> This ...
0
votes
3answers
778 views

'System.Dynamic.ExpandoObject' does not contain a property with the name 'Name'

Here is what I have: var listAddresses = GetAddresses().ToList(); return Json(new JsonResult { Data = new SelectList(listAddresses, "Name", "Id") }, JsonRequestBehavior.AllowGet); But I get the ...
2
votes
1answer
469 views

Passing Dictionary to ObjectForScripting with WPF WebBrowser

I am using a WebBrowser component in WPF to host some JavaScript + HTML and I want to be able to pass a customisable object in as the ObjectForScripting property. My end goal is that the javascript ...
1
vote
1answer
341 views

ExpandoObject with Spring expression

I made object using ExpandoObject class and I want to perform spring.net expression on that object, but then I got following error: 'Name' node cannot be resolved for the specified context ...
1
vote
2answers
2k views

Cast ExpandoObject to anonymous type

Can I cast ExpandoObject to anonymous type ? var anoObj = new { name = "testName", email = "testEmail" }; dynamic expandoObj = new System.Dynamic.ExpandoObject(); // Here I'm populating the ...
0
votes
1answer
127 views

Determine Object Type in ExpandoObject

I have derived a class which will take an XML file and generate ExpandoObject dynamically for the XML being passed in utilizing Lists of ExpandoObjects and recursion. Passing this back to be ...
3
votes
1answer
724 views

Using dynamic objects in codedom created LINQ queries

I tried to use expandoobjects in LINQ queries to have the ability to query against properties that are created during runtime, for example the headers from a csv file. It all worked fine if typing the ...
5
votes
2answers
2k views

Add property to ExpandoObject with the same name as a string

Is there a way to add a property to an ExpandoObject with the same name as a string value? For example, if I have: string propName = "ProductNumber"; dynamic obj = new ...

1 2 3