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.
我是实体的新手,我应该如何构建我的实体模型。我们有 600 个数据库表。那么哪些选项应该更适合 DB First 或 EF First?请让我知道哪个更好以及每种替代方案的优缺点(如果有的话)。
谢谢。
假设您有一个 User 表和一个 Report 表。报告表有一个对应用户行的用户 ID 键。如果您在 Accounts.EDMX 中有用户,在 Reporting.EDMX 中有报告,您将没有“User.Reports”或“Report.User”导航属性。
就我而言,这是将 EDMX 拆分为多个文件的最大问题,也是我总是将所有表添加到单个文件的原因......