重新排序实体属性

发布于 2024-11-02 14:11:13 字数 149 浏览 0 评论 0原文

我有一个实体(分机),具有许多属性(例如 id、分机、前缀)和一些导航属性(phones_departments、phones_buildings) - 它们按照在 EDMX 中显示的顺序显示...但是如果我想要怎么办它们以不同的顺序显示?我正在使用动态数据 - 有办法实现这一点吗?

I have an Entity (Extensions) with a number of properties (e.g. id, extension, prefix) and a few navigation properties (phones_departments, phones_buildings) - they show up in the order they display in the EDMX...but what if I want them to display in a different order? I'm using Dynamic Data - is there a way to accomplish this?

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

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

发布评论

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

评论(1

滥情哥ㄟ 2024-11-09 14:11:13

您是否在网格中显示数据?

如果是,您可以根据其他一些属性对网格列进行排序。例如,您可以在数据存储中拥有 ColumnOrder 属性并更新它。对列进行排序的代码因网格而异,但通常很容易做到。

要点是您想要修改显示级别逻辑,而不是创建实际对象的方式。因为您的订单始终可以根据应用程序进行。

are you showing your data in a grid?

if yes, you could sort grid columns based on some other property. You could for example have a ColumnOrder property in your data store and update that. The code to sort the columns varies per grid, but it is usually easy to do.

Main point being is that you want to modify the display level logic, not the way the actual object is created. since your order can always very per application.

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