Tagged Questions
The complex-data-types tag has no wiki summary.
18
votes
15answers
30k views
Complex data types in WCF?
I've run into a problem trying to return an object that holds a collection of childobjects that again can hold a collection of grandchild objects. I get an error, 'connection forcibly closed by host'.
...
3
votes
2answers
174 views
C# Automatic Property Deserialization - Lists
I'm trying to use automatic deserialization in my MVC action like so:
public void CreateEntitlementEntity(EntitlementEntityModel model) {
// stuff
}
And here's the class I want to deserialize:
...
1
vote
5answers
100 views
Iterating over data structure
I am trying to iterate over this data structure:
$deconstructed->{data}->{workspaces}[0]->{workspace}->{facts}[0]->{code}
where fact[0] is increasing. It's several files I am ...
1
vote
1answer
104 views
how do you go about dealing with ajax and Model Binding when complex types are involved?
I would like to keep model binding when doing ajax calls from my view. I'm using jquery ajax to make the calls, and just as an example- this is my controller method I want to call from ajax:
public ...
0
votes
0answers
287 views
Complex data returned via WCF Data service service operation has invalid json
I am trying to return an IEnumerable via my service operation of WCF Data service. The operation runs fine in browser and returns json. However when I consume it in my client app via jQuery, firefox ...
0
votes
1answer
807 views
how to use TypeConverters to convert a System.Datetime to custom type
For some reason I need to cast/convert a DateTime into one of many custom objects
This proves to be very difficult to do in a nice generic fashion.
I am thinking of implementing an extension method ...