Take the standard return statement for a controller:

return View("Index");

is there a way to make this thing compile time safe? using static reflection or some other trick?

link|improve this question

75% accept rate
feedback

1 Answer

up vote 8 down vote accepted

Yes; you're looking for this.

T4MVC is a T4 template for ASP.NET MVC apps that creates strongly typed helpers that eliminate the use of literal strings when referring to controllers, actions and views. It helps make your MVC code much more maintainable, and gives you intellisense where you normally would not have any.

link|improve this answer
1  
If this does what I think it does this is awesome. I really hate all the literal strings and type unsafety that I've encountered since switching from .NET desktop applications to web application!!! – AaronLS Apr 7 '10 at 20:19
1  
It generates a class hierarchy of string constants for action and controller names at compile-time using T4. – SLaks Apr 7 '10 at 20:20
does it also include something for the weakly typed routeValueDictionary/object passing? – Maslow Apr 7 '10 at 20:24
@Maslow since you can't tell what will be in a dictionary until run time, I don't see how this would be possible. Unit testing is your friend. – David Lively Apr 7 '10 at 20:26
well, at least up to an int for Id the examples on the linked page do that. not sure why that's the only type he is doing strong typing on. – Maslow Apr 7 '10 at 20:29
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.