ASP.NET-MVC-Lambda-Expression-Helpers icon indicating copy to clipboard operation
ASP.NET-MVC-Lambda-Expression-Helpers copied to clipboard

A collection of extension methods providing strongly typed link generation for ASP.NET MVC 5 projects.

Results 9 ASP.NET-MVC-Lambda-Expression-Helpers issues
Sort by recently updated
recently updated
newest added

This significantly improves the performance when using member access expressions. This uses the same caching backend that MVC uses. Their entry point is an internal class, so reflection is used...

Similar to ASP.NET MVC's default helpers, this overload doesn't require specifying `FormMethod.Post` on every invocation.

When area is passed when we're not using areas, generated urls in child actions will have `?area=` appended to them. This is caused by the following: `ChildActionExtensions.ActionHelper` [calls][0] `RouteCollectionExtensions.GetVirtualPathForArea` which...

I've mainly updated the references to the latest stable versions of everything. I've also done a few things with Code Analysis to address or suppress rules. I am open to...

After upgrading to a newer version of System.Web.Mvc a green squiggly shows under HTML helper methods such as the following when System.Web.Mvc.Expressions is referenced : ``` @using (Html.BeginForm() { }...

I tried to use expression helper to create and update, create is working fine but in edit, I have two actions with the same name **Edit**, I cant able to...

question

Is there a performance hit in using this library? I was looking at the code and it appears to do a lot of reflection every HTTP call. Reflection is an...

Your methods like RedirectToActionPermanent, Url.Action, etc. all take an optional object for route values. This works most of the time. However, if you pass in an actual ``RouteValueDictonary' to the...

enhancement

There are places where we need help generating URLs outside of a controller. For example, when setting up special routes: ``` routes.MapRoute("health", "health", "/Health"); ``` Would be nice to do...

feature