Tagged Questions

1
vote
1answer
53 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 …
3
votes
7answers
4k 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 forci …
0
votes
3answers
374 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 …