Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In MVC flavor of ASP.NET, I'm wondering what is the cost of relying on lambda expressions and data annotations as implied by the use of EditorFor and other *For helpers. I suppose all is stuff is cached - am I correct?

Any link or explanation on this topic is welcome.

Thank you!

Side question: Are there coding practices to avoid because it would prevent a proper caching?

share|improve this question

2 Answers

up vote 0 down vote accepted

The corresponding view is indeed cached. However, as far as I can see, it is still being rendered every time it is called.

You can trace this down in System.Web.Mvc.Html.TemplateHelper.cs (source code available on the ASP.NET codeplex site: http://aspnet.codeplex.com/releases)

share|improve this answer

Yes, they're cached. As for coding practices...don't think so.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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