SubSonic3 - Url.CreateSortLink

发布于 2024-07-27 01:30:57 字数 98 浏览 2 评论 0原文

我使用的是 SubSonic 3.0.0.2,找不到 Url.CreateSortLink 方法。

它在哪里? 当时是 3.0.0.0。 已经被丢弃了吗?

I'm using SubSonic 3.0.0.2 and can't find the Url.CreateSortLink method.

Where is it? It was in 3.0.0.0. Has it been dropped?

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

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

发布评论

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

评论(1

末蓝 2024-08-03 01:30:57

我正在使用 AdventureWorks 并列出 Employee 表。

我得到了使用 v3.0.0.2 对列进行排序的答案:

<a href='<%= Url.Action("Index", "Employee", new { s = "EmployeeID" }) %>'>Employee ID</a>

在后端代码上:

string sortBy = Request.QueryString["s"];

IEnumerable<Employee> items = null;

if (String.IsNullOrEmpty(sortBy))
    items = Employee.GetPaged(pageNumber, pageSize);
else
    items = Employee.GetPaged(sortBy, pageNumber, pageSize);

return View(items);

I'm using AdventureWorks and listing the Employee table.

I got the answer for sorting the columns using v3.0.0.2:

<a href='<%= Url.Action("Index", "Employee", new { s = "EmployeeID" }) %>'>Employee ID</a>

On the back-end code:

string sortBy = Request.QueryString["s"];

IEnumerable<Employee> items = null;

if (String.IsNullOrEmpty(sortBy))
    items = Employee.GetPaged(pageNumber, pageSize);
else
    items = Employee.GetPaged(sortBy, pageNumber, pageSize);

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