Skip to content

Instantly share code, notes, and snippets.

@thedersen
Created February 18, 2011 23:55
Show Gist options
  • Save thedersen/834631 to your computer and use it in GitHub Desktop.
Save thedersen/834631 to your computer and use it in GitHub Desktop.
Get["/embedded"] = x => {
var model = new RatPack { FirstName = "Embedded" };
return View[model];
};
// in the view factory
public Action<Stream> this[dynamic model]
{
get { return this.GetRenderedView(model.GetType().Name, model); }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment