使用 NHibernate 映射分区数据的方法
我们有一个场景,其中活动记录存储在一个表中,并且随着时间的推移,旧记录将被存档。两个表(活动表和存档表)的表结构完全相同。
例如 域对象_当前: 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试使用视图来收集两个分区表。并且 DomainObject 映射到该视图。
You may try to use a view to collect two of the partitioned tables. And DomainObject map to this view.