Common.Web.Mvc.Extensions

  1. string Get<TModel>(NameValueCollection, Expression<Func<TModel, object>>)
    Adds to FormCollection.Get, for getting same Key name, when using an expresion.
    
    EX: @Html.HiddenFor(model => model.Id)
    FormCollection.Get(model => model.Id)
    The above would return the value for hidden form data.