|
4 |
edited tags
|
||
|
3 |
edited title
|
||
Should my MVC controller really know about JSon JSON?!! |
||||
|
2 | added 364 characters in body | ||
|
The JsonResult class is a very useful way to return Json as an action to the client via AJAX.
However (at least according to my first impression) this really isn't a good separation of concerns.
I'm wondering why the translation between an object and Json wasn't implemented declaratively via an attributesuch as like . In the code below you're essentially telling MVC that Unit testing can just take the action result (
I was just curious as to people's thoughts and any alternative pattern to follow. These are also just my initial observations - there are probably more reasons why this is not an ideal design (and probably plenty why its a perfectly acceptable and practical one!) I'm just feeling theoretical and devils-advocatey tonight. * Disclaimer: I haven't even begun to think about how this the attribute would be implemented or what sideeffects or repurcussions etc. it might have. |
||||
|
1 |
|
||
