使用 NHibernate 映射分区数据的方法

发布于 2024-10-02 03:55:38 字数 283 浏览 3 评论 0原文

我们有一个场景,其中活动记录存储在一个表中,并且随着时间的推移,旧记录将被存档。两个表(活动表和存档表)的表结构完全相同。

例如 域对象_当前: ID INT : 自动增量键 值 INT 时间戳

DomainObject_Archive 识别码 整数 值 INT 时间戳

我们每周将超过 30 天的记录从当前表移至存档表。 ID(主键)在两个表中是唯一的。

应用程序应该不知道数据是来自当前表还是存档表。 在这种情况下映射 DomainObject 类的最佳方法是什么?

We have a scenario where active records are stored in one table and over time old records are archived. The table structures for the two tables - active and archive are exactly the same.

E.g
DomainObject_Current :
ID INT : Autoincrement Key
Value INT
TimeStamp

DomainObject_Archive
ID INT
Value INT
Timestamp

On a weekly basis we move records over 30 days old to the archive table from the Current table.
The ID (Primary Key) is unique across the two tables.

The application should be agnostic of whether the data is coming in from the Current table or the Archive table.
What is the best way to map the DomainObject class in this scenario?

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

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

发布评论

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

评论(1

葬心 2024-10-09 03:55:38

您可以尝试使用视图来收集两个分区表。并且 DomainObject 映射到该视图。

You may try to use a view to collect two of the partitioned tables. And DomainObject map to this view.

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