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.
我想知道是否有任何方法可以使用复杂类型在多个表中插入数据如果我有一个父对象有一组子对象并且我也需要在父对象及其子对象中插入数据示例:这是父对象“视频”及其子视频数据图
请指教
EF 将自动更新所有修改的实体/属性。因此,如果您创建一个新的 VideoData,设置它的语言,并将其附加到 Video 实例的 VideoDatas 集合中,然后调用
context.SaveChanges();
EF 会将 VideoData 添加到数据库中,设置语言,然后更新视频记录。它在图形上上下移动以保存任何更改。您只需要确保您首先使用context的是获取实体,以便 EF 可以跟踪它。
context