Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有 100 个具有相同架构的表。对于这种情况,使用 Fluent NHibernate 的最佳解决方案是什么?我的意思是我应该创建什么映射?提前致谢!见图:
PS。每个表都包含非常大量的数据。
如果您只想映射所有表以供阅读,您可以创建一个UNION ALL对所有表执行查询的 SQL 视图。
UNION ALL
然后,只需在映射单个表时映射 SQL 视图。
查看上一个问题的答案(以及类似问题)。