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.
我使用了急切加载,因为延迟加载不会在对象处理之前加载所有相关数据。急切加载会带来性能问题吗?
那么什么时候用这两个呢?
根据定义,延迟加载仅在引用时加载数据,因此“按预期工作”,并且在处置容器对象之前不会加载所有数据。当数据必须存在时,使用急切加载,但必须将数据限制为仅需要的数据,否则在获取和格式化数据(如果需要)时会发生性能损失,这可以通过分页来缓解。