Archives
-
QueryString values along with id parameter in ASP.NET MVC
A number of folks have asked me how to pass query string values along with a route parameter id. They are looking onto send a url like http://MySite/Home/Edit/5?name=shiju.
-
ASP.NET MVC View Model object using C# 4 dynamic and ExpandoObject
In my last post, I have explained the use of View Model objects in ASP.NET MVC applications. In this post, let me discuss on view model objects by using the C# 4 dynamic and ExpandoObject. I do not recommending to use dynamic keyword for creating View Model objects that will loss the intellisense feature of Visual Studio.
-
View Model pattern and AutoMapper in ASP.NET MVC Applications
In real world ASP.NET MVC applications, we have to use model objects specially designed for our ASP.NET MVC views. Domain objects are designed for the needs for domain model and it is representing the domain of our applications. On the other hand, View Model objects designed for our needs for views.
The below is the domain model of our demo -
My ASP.NET MVC 2 Talk at Community Tech Days
I did a presentation titled " Building Apps with ASP.NET MVC 2 and Entity Framework" at Microsoft Community Tech Days. I have given a brief indroduction to ASP.NET MVC and demonstrated how to building applications with ASP.NET MVC 2 and Entity Framework 4. You can download the powerpoint slide from here.