从 EF 的两个实体构建字典
我有两个用于生成两个实体的表。例如:问题和所有者(一个所有者可以拥有多个问题,反之亦然)。现在,出于性能原因,我想在运行时将它们加载到内存中(查找所有者给出的问题)。所以我想我可以拥有字典Dictionary(IssueEntityComparer)。 如何在 C# 中建立这个字典?
I have two tables which used to generate two entities. For example: issue and owner (one owner can own multiple issues, not vice versa). Now I want load these into memory at run time for performance reason (to look up owner give an issue). So I think I can have dictionary Dictionary(IssueEntityComparer).
How do I build up this dictionary in C#?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
Try this: