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.
我有一个与我的逻辑实体类相关的信息,它存储为List<KeyValuePair<int,string>>.
List<KeyValuePair<int,string>>
如何在我的 EF 代码优先实体类中反映这一点,以正确将此数据保存到数据库中?
当您的列表实体可以是另一个对象时,它可以被解析为一对多关系。所以在数据库中它将是两个具有一二多关系的表。
因此您可以将子实体添加到父实体
Car car = new Car(); car.Parts.Add(new Part());
汽车具有零件导航属性的位置定义了一对多零件关系
祝你好运!