如何将表达式分配给模型属性,然后在 ActionLInk 的部分中使用它?

发布于 2024-08-14 06:38:08 字数 745 浏览 2 评论 0原文

是否可以将 Lambda 表达式(操作?)分配给我的视图模型的属性,然后在 Partial 中使用该表达式?模型的属性类型应该是什么?伪代码:

视图模型

public class MyModel
{
    public ????? MyAction {get;set;}
}

控制器

public ActionResult Index()
{
   var model = new MyModel();
   model.MyAction = ?????<MyController>(x => x.DoThis());

   return View(model);
}

public ActionResult DoThis()
{
   return View();
}

Partial.ascx,如何将操作分配给 ActionLink?

<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<MyModel>" %>

<%=Html.ActionLink<Controller>(x => x.DoThis())%>

我正在使用 Futures 程序集中的强类型 ActionLink。

Is it possible to assign an Lambda Expression (action?) to a property of my View Model, then use that expression in a Partial? What should the model's property type be? Psuedo Code:

View Model

public class MyModel
{
    public ????? MyAction {get;set;}
}

Controller

public ActionResult Index()
{
   var model = new MyModel();
   model.MyAction = ?????<MyController>(x => x.DoThis());

   return View(model);
}

public ActionResult DoThis()
{
   return View();
}

Partial.ascx, How would I assign the action to the ActionLink?

<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<MyModel>" %>

<%=Html.ActionLink<Controller>(x => x.DoThis())%>

I am using the strongly typed ActionLink from the Futures assembly.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

终止放荡 2024-08-21 06:38:08

试试这个:

public class MyModel
{
    Expression<Action<MyController>> Action { get; set; }
}

...

model.Action = x => x.DoThis();

...

<%= Html.ActionLink( Model.Action ) %>

Try this:

public class MyModel
{
    Expression<Action<MyController>> Action { get; set; }
}

...

model.Action = x => x.DoThis();

...

<%= Html.ActionLink( Model.Action ) %>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文