Tag: Development

Community

What is ASP.NET MVC TempData

(Suprotim Agarwal) Simply said, ASP.NET MVC TempData dictionary is used to share data between controller actions. The value of TempData persists until it is read or until the current user’s session times out. Persisting data in TempData is useful in scenarios such as redirection, when values are nee

Community

Fluent Interfaces

(Richard Carr) Sometimes the public interfaces of object-oriented libraries lead to complex code that can be difficult to quickly understand. Fluent interfaces change the way that classes are written in order to help developers create code that mirrors natural language.