The intention of this site is to pass on knowledge that I have picked up that I believe will be of use to at least one other person somewhere in the world. I have been fortunate enough in my brief working life to experiment with new technologies, and in doing so have picked up some useful knowledge in the .Net arena.
I will be posting regularly about .Net related topics, useful tips or trainig material for new framework releases. Also, from time to time I will touch on new tools that have been released to make developers lives that bit easier. Keep checking back, or subscribe to the RSS feed to keep updated with my posts.
Ok, so here is the scenario; You have an MVC View (or Partial View) that has a Model which is a straight forward entity (it can also be a ViewModel with multiple entities within it). Based on some user input on the View you need a derived type of the Model to be posted back to the Controller Action This would appear to be a more common problem than people would think so a solution must be out there. Wel...View more