Skip to content

Instantly share code, notes, and snippets.

@breezhang
Created March 24, 2012 23:35
Show Gist options
  • Save breezhang/2189095 to your computer and use it in GitHub Desktop.
Save breezhang/2189095 to your computer and use it in GitHub Desktop.
MVC3 .net4 Y can dynamic view
strongly-typed View very stupid
///Key API
dynamic object =ExpandoObject();
object.sex = ...
object.name = ...
razor view
///
@model dynamic
@Model.sex
@Model.name
///done
Object can Map Model
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment