Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

20
votes
2answers
1k views

Differences between ExpandoObject, DynamicObject and dynamic

What are the differences between System.Dynamic.ExpandoObject, System.Dynamic.DynamicObject and dynamic? In which situations do you use these types?
13
votes
6answers
2k views

How to flatten an ExpandoObject returned via JsonResult in asp.net mvc?

I really like the ExpandoObject while compiling a server-side dynamic object at runtime, but I am having trouble flattening this thing out during JSON serialization. First, I instantiate the object: ...
9
votes
3answers
2k views

Can I serialize an ExpandoObject in .NET 4?

I'm trying to use a System.Dynamic.ExpandoObject so I can dynamically create properties at runtime. Later, I need to pass an instance of this object and the mechanism used requires serialization. Of ...
8
votes
3answers
1k views

.NET 4.0 framework dynamic features in VB with Option Strict On?

Is there any way to use the new dynamic features in the 4.0 framework like ExpandoObject in VB.NET without setting Option Strict Off? With C#, you lose type safety only with the variables you ...
8
votes
1answer
526 views

Does C# 4.0's ExpandoObject support Prototype-based inheritance?

Does C# 4.0's ExpandoObject support Prototype-based inheritance? If not, why not(was it by design?) and how could this be implemented? If yes, how does it work and differences are there to the way it ...
7
votes
1answer
113 views

Implementing ExpandoObject in Scala

I am trying to implement C#'s ExpandoObject-like class in Scala. This is how it is supposed to work: val e = new ExpandoObject e.name := "Rahul" // This inserts a new field `name` in the object. ...
6
votes
2answers
1k views

C# 4.0 Dynamic vs Expando… where do they fit?

I am trying to learn all the new goodies that come with C# 4.0. I am failing to understand the differences between the Dynamic and Expando types. From the looks of things it seems like Dynamic is when ...
6
votes
3answers
7k views

How do I dynamically generate columns in a WPF DataGrid?

I am attempting to display the results of a query in a WPF datagrid. The ItemsSource type I am binding to is IEnumerable<dynamic>. As the fields returned are not determined until runtime I don't ...
5
votes
3answers
578 views

Short way to achieve dynamic objects from LINQ to XML select query?

Is there an initialization syntax to the ExpandoObject that I can use to my advantage in a LINQ to XML query for brevity purposes? Note: The results of the query are intended to be passed ...
4
votes
1answer
44 views

How do I make WebMethods serialize ExpandoObject

I have a WebMethod that looks like this which is used to populate a jqGrid [System.Web.Script.Services.ScriptService] public class MyWebService: System.Web.Services.WebService { [WebMethod] ...
4
votes
2answers
175 views

how to convert Dictionary<dynamic, dynamic> to Dictionary<string, string> using Colllection.ToDictionary()

I am using Dapper to fetch a 2 column resultset into a dictionary. I noticed that intellisense shows me a .ToDictionary() when I hover over the resultset but I cannot get it to work since dapper uses ...
3
votes
4answers
114 views

Why does LINQ not work to add DataRows to a DataTable?

To shoehorn ExpandoObjects into something grids like the following two attempts were made. This doesn't work: var data = _d.Query<dynamic>(_script); // returns ...
3
votes
4answers
249 views

Why can't I do this: dynamic x = new ExpandoObject { Foo = 12, Bar = “twelve” }

Am I doing something wrong, or is the following code really not possible? dynamic x = new ExpandoObject { Foo = 12, Bar = "twelve" }; If this really isn't possible, is there another one-line way to ...
3
votes
1answer
672 views

How to serialize ExpandoObject using ServiceStack JsonSerializer?

Is it possible to get the ServiceStack JsonSerializer to serialize an ExpandoObject as a flat object rather than a dictionary? Something roughly approximate to this: ...
3
votes
2answers
466 views

.net expando object and LINQ. Possible or not?

I have a simple list of expando objects called products. i add various fields to these objects at runtime ( for example color or size) How can i write a LINQ query on this list based on dynamic ...
3
votes
2answers
198 views

Adding methods to ExpandoObjects

UPDATE The problem is not the code, the problem is that you apparently can't evaluate dynamic objects from the immediate window. I'm trying to tack on methods to an ExpandoObject but not sure how ...
3
votes
3answers
870 views

ExpandoObject vs. Dictionary from a performance point of view?

A rather simple question really. I'm working on a project where I need to store and retrieve property values dynamically from a kind of context storage. The values will be written now and then and ...
2
votes
0answers
85 views

C# deep/nested/recursive merge of dynamic/expando objects

I need to "merge" 2 dynamic objects in C#. All that I've found on stackexchange covered only non-recursive merging. But I am looking to something that does recursive or deep merging, very much the ...
2
votes
1answer
67 views

Accessing properties of anonymous/dynamic types across dll boundaries gives RuntimeBinderException

In the following sample, x.propertyX works fine, whereas y.propertyX gives me a Microsoft.CSharp.RuntimeBinder.RuntimeBinderException, complaining 'propertyX' is not defined in 'object'. The ...
2
votes
0answers
120 views

Does databinding to dynamics and ExpandoObjects work in .NET

For the life of me I I don't seem to be able to get Databinding to Dynamics or ExpandoObjects working. I have tried this in WinForms and in WebForms and get different results in each: In ASP.NET: ...
2
votes
2answers
119 views

How do I wrap an object in a dynamic object?

Given an System.Object, how do I get a dynamic object with which to access any members it might have. Specifically, I want to unit test an ASP.NET MVC 3 controller action which returns a JsonResult. ...
2
votes
2answers
173 views

Is it possible to create a Dynamic tree structure using the ExpandoObject?

at the moment I am using the ExpandoObject to dynamically store firstname and surname. e.g. // Create Expando object for testing dynamic employee = new ExpandoObject(); // Dynamically ...
2
votes
4answers
603 views

Adding Methods Dynamically to ExpandoObject

Thanks all of you, it works! I got another question... How I can add a factory method to an ExpandoObject to return me a new instance: for eg (Psuecode) dynamic ...
2
votes
2answers
1k views

Reflect on an ExpandoObject

I have written a nifty function that will accept a system.object, reflect on its properties and serialize the object into a JSON string. It looks like this: public class JSONSerializer { public ...
2
votes
1answer
188 views

How do I pass an ExpandoObject from C# into IronRuby?

Executing the below code gives me the following exception on the last line: InvalidOperationException: "unbound variable: value" var rubyRuntime = Ruby.CreateRuntime(); ...
1
vote
1answer
63 views

Use of expando objects in views?

Edit: Seems numerous people think this is a dumb idea, so I would appreciate an explanation of why it's bad? I was trying to make one partial view that could handle a list of any models to display in ...
1
vote
2answers
93 views

Expando dynamic object passing to other class requires Microsoft.CSharp.dll?

I have build a function: string removeFile(HttpContext context,HttpRequest r) { dynamic d = new ExpandoObject() ; d.ItemCommand = r["itemId"].ToString(); ... ... ...
1
vote
2answers
88 views

Dynamically adding properties to a dynamic object?

i have this dynamic d = new ExpandoObject(); d.Name = attribute.QualifiedName.Name; so , i know that d will have a property Name. Now if i don't know the name of the property at compile time , how ...
1
vote
3answers
96 views

A List inside an ExpandoObject

dynamic model = new ExpandoObject(); model.Data = "asdf"; List<dynamic> listOfx = new List<dynamic>(); for (int i = 0; i < 3; i++) { dynamic ...
1
vote
3answers
133 views

How to set ExpandoObject's dictionary as case insensitive?

given the code below dynamic e = new ExpandoObject(); var d = e as IDictionary<string, object>; for (int i = 0; i < rdr.FieldCount; i++) d.Add(rdr.GetName(i), DBNull.Value.Equals(rdr[i]) ...
1
vote
1answer
223 views

Is it possible to add attributes to the generated members of an ExpandoObject instance?

I'm trying to use an ExpandoObject as the SelectedObject of a PropertyGrid. I know how to add the properties I want to the ExpandoObject: public dynamic MakePropertyObject() { dynamic expando = ...
1
vote
2answers
175 views

How is a method with out parameters assigned to an ExpandoObject?

I'm trying to assign a method (function) to an ExpandoObject with this signature: public List<string> CreateList(string input1, out bool processingStatus) { //method code... } I've tried to ...
1
vote
0answers
305 views

A substitute for ExpandoObject in .NET 3.5 with least overhead

How can I imitate the functionality of the ExpandoObject in a .NET 3.5 application with the least overhead? My best lead so far is to use the Lin Fu framework ( ...
0
votes
0answers
27 views

Dynamic binding for generated DataGridTemplateColumns from Expando object

I have a WPF datagrid with the item source set to an ObservableCollection of dynamic. The collection was populated as follows. private ObservableCollection<dynamic> ...
0
votes
1answer
92 views

Deserializing Guids using Json.Net to ExpandoObject loses type and is a string

Given the following class: public class Entity { public Guid UniqueId { get; set; } } The following test fails: [Test] public void GuidTest() { var ...
0
votes
0answers
129 views

Massive.CS, Expando, MVC3

Relatively new to MVC3, I'm using Rob Connery's Massive micro-ORM to get data from my DB, simple single table one for now. I'm trying to get EditorFor to work when adding a new record, or even ...
0
votes
0answers
77 views

How to find types in IEnumerable<ExpandoObject> returned by PetaPoco.Database.Query<dynamic>?

I'd like to find out at runtime all the types in an ExpandoObject. Here's some exploratory code: using PetaPoco; ... var data = _d.Query<dynamic>(_script); IDictionary<string, ...
0
votes
2answers
63 views

What is the best way to unit test a simple JsonResult?

In the event of a successful AJAX call I want to return a simple object with Success = true public ActionResult Foo(int id) { // ... return Json(new {Success=true}); } This works fine and ...
0
votes
2answers
174 views

How to bind a collection of ExpandoObjects to a Data Grid?

I'm trying to read a table from an Excel file (.xls) and display it in a DataGrid. The table has unknown dimensions and each column has values of one unknown type (string, double or int). I access ...
0
votes
4answers
653 views

ExpandoObject, anonymous types and Razor

I want to use an ExpandoObject as the viewmodel for a Razor view of type ViewPage<dynamic>. I get an error when I do this ExpandoObject o = new ExpandoObject(); o.stuff = new { Foo = "bar" }; ...
0
votes
1answer
193 views

Dynamic(ExpandoObject) vs static type(Model) in asp.net mvc

Dynamic vs static type in asp.net mvc Is car better than motorcycle? It all depends on the scenario you are using it. Without knowing the scenario it is not possible to make that determination! Is ...
0
votes
3answers
522 views

Binding a GridView to a Dynamic or ExpandoObject object

I'm using Rob Conery's Massive ORM, and I haven't been able to bind the resulting ExpandoObject to a GridView. I did find another Stackoverflow question that suggests using a framework called ...
0
votes
4answers
297 views

Persisting an ExpandoObject to MongoDB

I have an ExpandoObject with an arbitrary number of properties. I want to persist those properties to a MongoDB database as a BsonDocument. I try to do so with the following code: private ...
-1
votes
2answers
61 views

Can we Create automatic Get and Set Property at Run time?

I want to create public object Value { get; set; } public Type Type { get; set; } public string Name { get; set; } public string "user has to give propertyname" {get;set;} at run time as per ...
-1
votes
2answers
121 views

what does string GenerateStronglyTypedClass(ExpandoObject object) look like?

Often when I'm creating MVC views, I first bind my view to an ExpandoObject so I can quickly figure out the shape of my viewmodel, without having to spend time adding/modifying/removing real ...