SeasonEditor moved to Gird Editor.

This commit is contained in:
Mark McDowall 2011-06-04 22:23:50 -07:00
commit 08b7b8c3e1
10 changed files with 90 additions and 83 deletions

View file

@ -0,0 +1,27 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Linq.Expressions;
using System.Web;
using System.Web.Mvc;
namespace NzbDrone.Web.Helpers
{
public static class ValueExtension
{
public static object ValueFor<TModel, TValue>(this HtmlHelper<TModel> html, Expression<Func<TModel, TValue>> expression)
{
var memberEx = expression.Body as MemberExpression;
if (memberEx == null)
throw new ArgumentException("Body not a member-expression.");
string name = memberEx.Member.Name;
var model = html.ViewData.Model;
var value = model.GetType().GetProperty(name).GetValue(model, null);
return value;
}
}
}